├── CHANGELOG.md ├── example ├── todo_list_angular │ ├── lib │ │ ├── todo_component.html │ │ ├── todo_component.css │ │ ├── footer_component.html │ │ ├── add_todo_component.html │ │ ├── todolist_component.html │ │ ├── app_component.html │ │ ├── todo_component.dart │ │ ├── todolist_component.dart │ │ ├── add_todo_component.dart │ │ ├── footer_component.dart │ │ └── app_component.dart │ ├── web │ │ ├── index.html │ │ └── main.dart │ ├── .gitignore │ └── pubspec.yaml ├── todo_list_flutter │ ├── flutter.yaml │ ├── .gitignore │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-Small.png │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ ├── Icon-Small-40.png │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ │ └── Contents.json │ │ │ ├── main.m │ │ │ ├── Base.lproj │ │ │ │ ├── Main.storyboard │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Info.plist │ │ │ └── AppDelegate.m │ │ ├── Pods │ │ │ ├── Target Support Files │ │ │ │ └── Pods-Runner │ │ │ │ │ ├── Pods-Runner-dummy.m │ │ │ │ │ ├── Pods-Runner-acknowledgements.markdown │ │ │ │ │ ├── Pods-Runner.debug.xcconfig │ │ │ │ │ ├── Pods-Runner.release.xcconfig │ │ │ │ │ ├── Pods-Runner-acknowledgements.plist │ │ │ │ │ ├── Pods-Runner-frameworks.sh │ │ │ │ │ └── Pods-Runner-resources.sh │ │ │ └── Pods.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Podfile │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── project.pbxproj │ │ └── .gitignore │ ├── android │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── AndroidManifest.xml │ ├── README.md │ ├── pubspec.yaml │ └── lib │ │ └── main.dart └── todo_list_butterfly │ ├── README.md │ ├── CHANGELOG.md │ ├── web │ ├── styles.css │ ├── index.html │ └── main.dart │ ├── .gitignore │ ├── pubspec.yaml │ ├── .analysis_options │ └── LICENSE ├── testing └── todo_list │ ├── CHANGELOG.md │ ├── .gitignore │ ├── pubspec.yaml │ ├── README.md │ └── lib │ ├── todo_list.dart │ └── src │ ├── action_type.dart │ ├── todo.dart │ ├── todo_state.dart │ ├── todo_action.dart │ └── todo_app.dart ├── .gitignore ├── pubspec.yaml ├── lib ├── greencat.dart └── src │ ├── thunk_middleware.dart │ ├── logging_middleware.dart │ ├── reducer_base.dart │ ├── middleware_api.dart │ ├── typedefs.dart │ ├── action.dart │ └── store.dart ├── README.md ├── analysis_options.yaml ├── test └── greencat_test.dart ├── APACHE_LICENSE └── LICENSE /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.0.1 4 | 5 | - Initial version, created by Stagehand 6 | -------------------------------------------------------------------------------- /example/todo_list_angular/lib/todo_component.html: -------------------------------------------------------------------------------- 1 |