Skip to content

Instantly share code, notes, and snippets.

@enriquesaid
Last active May 27, 2020 19:52
Show Gist options
  • Save enriquesaid/80baca9abd34267a3b2eea91a22fe1a0 to your computer and use it in GitHub Desktop.
Save enriquesaid/80baca9abd34267a3b2eea91a22fe1a0 to your computer and use it in GitHub Desktop.
tested basic main flutter
import 'package:flutter/material.dart';
void main() {
App().bootstrap(runApp);
}
class App {
Future<void> bootstrap(Function runner) async {
// ...before
runner(MyApp());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment