text button flutter style
TextButton(
child: Text('Text'),
style: TextButton.styleFrom(primary: Colors.blue),
onPressed: () {
print('Pressed');
},
)
text button flutter style
TextButton(
child: Text('Text'),
style: TextButton.styleFrom(primary: Colors.blue),
onPressed: () {
print('Pressed');
},
)
flutter button style
ElevatedButton(
style: ButtonStyle(
backgroundColor: MaterialStateProperty.resolveWith<Color>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.pressed))
return Theme.of(context).colorScheme.primary.withOpacity(0.5);
return null; // Use the component's default.
},
),
),
)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us