Answers for "get.snackbar flutter"

9

flutter snackbar

ScaffoldMessenger.of(context).showSnackBar(SnackBar(
                content: Text("Your Text"),
                duration: Duration(milliseconds: 300),
              ));
Posted by: Guest on July-08-2021
2

flutter snackbar replacement

ScaffoldMessenger.of(context).showSnackBar(SnackBar(
  content: const Text('snack'),
  duration: const Duration(seconds: 1),
  action: SnackBarAction(
	label: 'ACTION',
	onPressed: () { },
  ),
));
Posted by: Guest on March-14-2021
3

flutter snackbar

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

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key}) : super(key: key);

  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();

  @override
  void initState() {
    super.initState();
    showInSnackBar("Some text");
  }

  @override
  Widget build(BuildContext context) {
    return new Padding(
            key: _scaffoldKey,
            padding: const EdgeInsets.all(16.0),
            child: new Text("Simple Text")
    );
  }

  void showInSnackBar(String value) {
    _scaffoldKey.currentState.showSnackBar(new SnackBar(
        content: new Text(value)
    ));
  }
}
Posted by: Guest on August-06-2020
1

snackbar in flutter

final snackBar = SnackBar(
  content: Text('Yay! A SnackBar!'),
  action: SnackBarAction(
    label: 'Undo',
    onPressed: () {
      // Some code to undo the change.
    },
  ),
);
Posted by: Guest on March-04-2021
0

Flutter snackbar top

RaisedButton(
  child: Text('Show Top Snackbar'),
  onPressed: () {
    Flushbar(
      flushbarPosition: FlushbarPosition.TOP,
    )
      ..title = "Hey Ninja"
      ..message = "Lorem Ipsum is simply dummy text of the printing and typesetting industry"
      ..duration = Duration(seconds: 3)
      ..show(context);
  },
),
Posted by: Guest on August-10-2020

Browse Popular Code Answers by Language