add ip and mac addr

animated the changes
This commit is contained in:
neon443
2025-04-27 21:34:49 +01:00
parent 64a517333b
commit 9c68de0af0
19 changed files with 274 additions and 21 deletions

View File

@@ -52,16 +52,19 @@ struct NumberView: View {
}
}
Text(generated)
.font(.system(size: 50, weight: .bold))
.font(.system(size: 50))
.foregroundColor(.gray)
.frame(height: 40)
.contentTransition(.numericText())
Button {
prevGen = generated
generated = rng3(min: low, max: high, exclude: exclude)
withAnimation {
prevGen = generated
generated = rng3(min: low, max: high, exclude: exclude)
}
} label: {
Text("Generate")
.padding(.horizontal)
.font(.system(size: 25, weight: .bold))
.font(.system(size: 25))
}
.buttonStyle(BorderedProminentButtonStyle())
.cornerRadius(15)