flutter_lee 0.0.2 copy "flutter_lee: ^0.0.2" to clipboard
flutter_lee: ^0.0.2 copied to clipboard

outdated

A new flutter plugin project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_lee/flutter_lee.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
	@override
	Widget build(BuildContext context) {
		return new MaterialApp(
			title: 'Timer Button Demo',
			theme: new ThemeData(
				primarySwatch: Colors.blue,
			),
			home: new MyHomePage(),
			debugShowCheckedModeBanner: false,
		);
	}
}

class MyHomePage extends StatefulWidget {
	@override
	MyHomePageState createState() {
		return new MyHomePageState();
	}
}

class MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin {
	@override
	Widget build(BuildContext context) {
		return new Scaffold(
			appBar: new AppBar(
				title: new Text('Timer Button Demo'),
			),
			body: new Material(
				child: new Center(
					child: Padding(
						padding: const EdgeInsets.all(8.0),
						child: new Column(
							mainAxisAlignment: MainAxisAlignment.spaceEvenly,
							children: <Widget>[
								new TimerButton(
									label: "Send OTP Again",
									timeOutInSeconds: 20,
									onPressed: () {},
									disabledColor: Colors.red,
									color: Colors.deepPurple,
									disabledTextStyle: new TextStyle(fontSize: 20.0),
									activeTextStyle: new TextStyle(fontSize: 20.0, color: Colors.white),
								),
								new TimerButton(
									label: "Try Again",
									timeOutInSeconds: 10,
									onPressed: () {},
									buttonType: ButtonType.OutlineButton,
								),
								new TimerButton(
									label: "CLOSE",
									timeOutInSeconds: 5,
									onPressed: () {},
									buttonType: ButtonType.FlatButton,
									disabledColor: Colors.deepOrange,
									color: Colors.green,
								),
							],
						),
					),
				),
			),
		);
	}
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_lee