Skip to content

Instantly share code, notes, and snippets.

@suragch
Last active March 31, 2021 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suragch/2b266d00db3966b090e0453bf3a38789 to your computer and use it in GitHub Desktop.
Save suragch/2b266d00db3966b090e0453bf3a38789 to your computer and use it in GitHub Desktop.
Provider Architecture example
import 'package:flutter/material.dart';
import 'counter_screen.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: CounterScreen(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment