Guest User

Untitled

a guest
Jul 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2. import 'component/background_button.dart';
  3.  
  4. class App extends StatelessWidget {
  5. @override
  6. Widget build(BuildContext context){
  7. return MaterialApp(
  8. title: 'Backgrounded Flutter Button',
  9. home: Scaffold(
  10. body: BackgroundButton(),
  11. ),
  12. );
  13. }
  14. }
Add Comment
Please, Sign In to add comment