Skip to content

Instantly share code, notes, and snippets.

@stephaniefash
Created July 5, 2020 18:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save stephaniefash/fcb514c79c0874b163eb0b8779bc4d19 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class BigButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new RaisedButton(
child: Text("Click me"),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment