fish_redux 0.1.3 fish_redux: ^0.1.3 copied to clipboard
Fish Redux is an assembled flutter application framework based on Redux state management.
import 'package:flutter/material.dart';
import 'todo_list_page/page.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) =>
MaterialApp(home: ToDoListPage().buildPage(<String, dynamic>{}));
}