RatelHub / rflutter_alert

RFlutter Alert is super customizable and easy-to-use alert / popup dialog library for Flutter. You may create reusable alert styles or add buttons as much as you want with ease.
https://ratel.com.tr
MIT License
386 stars 117 forks source link

Alert Position on Bottom Screen? #48

Closed kartzhai closed 4 years ago

kartzhai commented 4 years ago

is it possible to pop up the alert on Top or Bottom Screen?

Thank you

dcarriola commented 4 years ago

I would also like this, to make it look like an action sheet. Is it possible? should it be coded?

YouSour commented 4 years ago

i need this too , we can adjust position alert 😄 anywhere we want (example : top , center , bottom) , i'm waiting ..

ibrahimdevs commented 4 years ago

@kartzhai , @dcarriola and @YouSour you want it, so we made it :) There is an AlertStyle Parameter for Alert Alignment now. Please upgrade to V1.1.0

Example:

    Alert(
      context: context,
      title: "RFLUTTER ALERT",
      desc: "Flutter is more awesome with RFlutter Alert.",
      style: AlertStyle(
        alertAlignment: Alignment.bottomCenter,
      ),
    ).show();