Search code examples
androidiosflutter

Is there any way to achieve a Flutter top snackbar?


I want to create a simple snackbar that come from top of the screen instesd of bottom.In flutter i have used native snackbar but it does not have such feature.


Solution

  • You can use https://pub.dartlang.org/packages/flushbar

    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);
      },
    ),