Getting Started
Simply run:
flutter pub add rearch flutter_rearch
And (this part is important), wrap your application widget
with a RearchBootstrapper
widget in your main.dart
.
main.dart modifications
void main() {
runApp(RearchBootstrapper(
child: MaterialApp(...),
));
}
Now you're all set to follow the rest of the docs!