Skip to content

Instantly share code, notes, and snippets.

@av
Created October 11, 2019 11:41
Show Gist options
  • Save av/4e52b0cb51eb717d0981ffcb9b75225b to your computer and use it in GitHub Desktop.
Save av/4e52b0cb51eb717d0981ffcb9b75225b to your computer and use it in GitHub Desktop.
Flutter: tough_bikes BikeButton with CustomPaint
class BikeButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
height: 50.0,
child: CustomPaint(
painter: BikeButtonPainter(),
child: Center(
child: Text('Buy Tough Bike'.toUpperCase()),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment