larryaasen / upgrader

A Flutter package for prompting users to upgrade when there is a newer version of the app in the store.
MIT License
558 stars 271 forks source link

tutorial and when use appcast? #328

Open ivan-vilches opened 1 year ago

ivan-vilches commented 1 year ago

just looking for a tutorial : i added this class MyApp extends StatelessWidget { const MyApp({Key key}) : super(key: key);

@override Widget build(BuildContext context) { return MaterialApp( title: 'Upgrader Example', home: UpgradeAlert( child: Scaffold( appBar: AppBar(title: Text('Upgrader Example')), body: Center(child: Text('Checking...')), )), ); } } but not working, also when is necessary use appcast? thanks you