Skip to content

Instantly share code, notes, and snippets.

@erikwco
Created May 15, 2019 04:38
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 erikwco/d1c9c5cd681e80b8ad4748e21b9353c9 to your computer and use it in GitHub Desktop.
Save erikwco/d1c9c5cd681e80b8ad4748e21b9353c9 to your computer and use it in GitHub Desktop.
Flutter Progress Bar Button - 0
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Animated Button'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: RaisedButton(
onPressed: (){},
child: Text("Welcome"),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment