flutter_simple_service_container 1.0.0-dev.2
flutter_simple_service_container: ^1.0.0-dev.2 copied to clipboard
Provides extensions to simple_service_container that streamline its useage with flutter.
import 'package:context_watch/context_watch.dart';
import 'package:flutter/material.dart';
import 'src/app_root.dart';
void main() {
// Since the extensions for watching services work primarily via context_watch
// we need to wrap our app in a ContextWatch.root
runApp(ContextWatch.root(child: AppRoot()));
}