fluttertoast 1.0.0 fluttertoast: ^1.0.0 copied to clipboard
Toast Library for FLutter
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
void main() => runApp(new MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
initState() {
super.initState();
}
void showLongToast() {
Fluttertoast.showToast("This is Long Toast", Toast.LENGTH_LONG);
}
void showShortToast() {
Fluttertoast.showToast("This is Short Toast", Toast.LENGTH_SHORT);
}
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text('Flutter Toast'),
),
body: new Center(
child: new Column(
children: <Widget>[
new Padding(
padding: const EdgeInsets.all(10.0),
child: new RaisedButton(
child: new Text('Show Long Toast'),
onPressed: showLongToast
),
),
new Padding(
padding: const EdgeInsets.all(10.0),
child: new RaisedButton(
child: new Text('Show Short Toast'),
onPressed: showShortToast
),
),
],
),
),
),
);
}
}