Skip to content

Instantly share code, notes, and snippets.

@41y08h
Created April 28, 2022 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 41y08h/a3540b06a5e7a9e4a8caaceae5897b48 to your computer and use it in GitHub Desktop.
Save 41y08h/a3540b06a5e7a9e4a8caaceae5897b48 to your computer and use it in GitHub Desktop.
Flutter text button with ripple effect and background color
TextButton(
onPressed: onPressed,
style: ButtonStyle(
backgroundColor:
MaterialStateProperty.all(color ?? const Color(0xff4e4c50)),
// padding: MaterialStateProperty.all(EdgeInsets.zero),
),
child: Container(
alignment: Alignment.center,
child: child,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment