Skip to content

Instantly share code, notes, and snippets.

@Adrek
Last active December 15, 2019 17:03
Show Gist options
  • Save Adrek/6326326848bb2581bcb8bf2c9f85334d to your computer and use it in GitHub Desktop.
Save Adrek/6326326848bb2581bcb8bf2c9f85334d to your computer and use it in GitHub Desktop.
Button Raised Flutter. Falta mejorar
Widget _botonIngresar() {
return Container(
decoration: BoxDecoration(
color: Color(0xFFa3137b),
borderRadius: BorderRadius.all(Radius.circular(30)),
),
width: double.infinity,
child: Material(
child: InkWell(
onTap: () {
print("tapped");
},
splashColor: Colors.white,
child: Container(
width: double.infinity,
padding: EdgeInsets.symmetric(vertical: 15),
alignment: Alignment.center,
child: Text('Ingresar', style: TextStyle(color: Colors.white, fontWeight: FontWeight.w400, fontSize: 18),),
),
),
color: Colors.transparent,
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment