flutter button
FlatButton(
color: Colors.red,
splashColor: Colors.black12,
onPressed: (){
},
child: Text(
"Nouvelle Texte"
),
),
flutter button
FlatButton(
color: Colors.red,
splashColor: Colors.black12,
onPressed: (){
},
child: Text(
"Nouvelle Texte"
),
),
button in flutter
//Text in Button
TextButton(
onPressed: ()=>{},
child: const Text("Signout")
),
//Text button with icon
TextButton.icon(
label: Text('Signout'),
icon: Icon(Icons.logout),
onPressed: () {}
),
//Text button with filled background
TextButton(
child: Text("button"),
style: TextButton.styleFrom(
primary: Colors.white, //Text Color
backgroundColor: Colors.teal, //Button Background Color
),
onPressed: () {},
),
buttons in flutter
TextButton(
onPressed: (){
},
child: Text(
"Nouvelle Texte"
),
),
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