flutter
SnackBar
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
home: new MyApp(),
));
}
class MyApp extends StatefulWidget {
@override
_State createState() => new _State();
}
class _State extends State<MyApp> {
final GlobalKey<ScaffoldState> _scaffoldstate = new GlobalKey<ScaffoldState>();
void _showbar() {
_scaffoldstate.currentState.showSnackBar(new SnackBar(content: new Text('Hello world')));
}
@override
Widget build(BuildContext context) {
return new Scaffold(
key: _scaffoldstate,
appBar: new AppBar(
title: new Text('Name here'),
),
body: new Container(
padding: new EdgeInsets.all(32.0),
child: new Center(
child: new Column(
children: <Widget>[
new Text('Add Widgets Here'),
new RaisedButton(onPressed: _showbar, child: new Text('Click me'),)
],
),
)
),
);
}
}
Was this helpful?
Similar Posts