provider_architecture 1.0.4 provider_architecture: ^1.0.4 copied to clipboard
A set of widgets to help with the implementation of the FilledStacks Provider Architecture
import 'package:example/views/home_view_provider_widget.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HomeViewProviderWidget(),
);
}
}