Skip to content

Instantly share code, notes, and snippets.

View bharatmk256's full-sized avatar
🎯
Focusing

Bharat Makwana bharatmk256

🎯
Focusing
View GitHub Profile
import 'package:flutter/material.dart';
import 'package:flutter_redux/flutter_redux.dart';
import 'package:redux/redux.dart';
import 'logic/reducers.dart';
import 'screen/my_home_screen.dart';
void main() {
final store = Store<int>(counterReducer, initialState: 0);
runApp(
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(title: "Twitter Clone", home: MyHomePage());