rebirth 1.0.0 copy "rebirth: ^1.0.0" to clipboard
rebirth: ^1.0.0 copied to clipboard

outdated

For Rebirth/Restart of your app.

Features #

A Flutter Package for give a rebirth of your app

Getting started #

Just wrap the WidgetRebirth widget to your MaterialApp or CupertinoApp and use the method WidgetRebirth.createRebirth for magic

Usage #

To use this plugin, add rebirth: ^

void main() => runApp(
  const WidgetRebirth(child:MaterialApp(
    home: Material(
      child: Center(
        child: ElevatedButton(
          onPressed: _launchUrl,
          child: Text('Show Flutter homepage'),),
      ),
    ),
  ),
  ),
);
void restart(){
  if(mounted) {
    WidgetRebirth.createRebirth(context: context);
  }
}

12
likes
0
points
181
downloads

Publisher

unverified uploader

Weekly Downloads

For Rebirth/Restart of your app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on rebirth