├── .gitignore ├── .metadata ├── README.md ├── Screenshot_1.png ├── Screenshot_3.png ├── Screenshot_4.png ├── Screenshot_5.png ├── android ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── news_mobx │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── 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 │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ ├── ProductSans-Bold.ttf │ └── ProductSans-Regular.ttf └── images │ ├── pokeball.png │ └── pokeball_dark.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart ├── models │ ├── evoluton.dart │ ├── poke_api.dart │ ├── poke_apiv2.dart │ └── species.dart ├── pages │ ├── home_page.dart │ └── pokedetail_page.dart ├── store │ ├── pokemon_store.dart │ ├── pokemon_store.g.dart │ ├── pokemonv2_store.dart │ └── pokemonv2_store.g.dart ├── utils │ └── consts.dart └── widgets │ ├── about_pokemon.dart │ ├── animated_fade.dart │ ├── evolucoes_pokemon.dart │ ├── poke_detail.dart │ ├── poke_item.dart │ ├── progress_bar.dart │ └── status_pokemon.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart └── web └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/Screenshot_1.png -------------------------------------------------------------------------------- /Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/Screenshot_3.png -------------------------------------------------------------------------------- /Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/Screenshot_4.png -------------------------------------------------------------------------------- /Screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/Screenshot_5.png -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/news_mobx/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/kotlin/com/example/news_mobx/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/ProductSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/assets/fonts/ProductSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/ProductSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/assets/fonts/ProductSans-Regular.ttf -------------------------------------------------------------------------------- /assets/images/pokeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/assets/images/pokeball.png -------------------------------------------------------------------------------- /assets/images/pokeball_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/assets/images/pokeball_dark.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/evoluton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/models/evoluton.dart -------------------------------------------------------------------------------- /lib/models/poke_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/models/poke_api.dart -------------------------------------------------------------------------------- /lib/models/poke_apiv2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/models/poke_apiv2.dart -------------------------------------------------------------------------------- /lib/models/species.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/models/species.dart -------------------------------------------------------------------------------- /lib/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/pages/home_page.dart -------------------------------------------------------------------------------- /lib/pages/pokedetail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/pages/pokedetail_page.dart -------------------------------------------------------------------------------- /lib/store/pokemon_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/store/pokemon_store.dart -------------------------------------------------------------------------------- /lib/store/pokemon_store.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/store/pokemon_store.g.dart -------------------------------------------------------------------------------- /lib/store/pokemonv2_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/store/pokemonv2_store.dart -------------------------------------------------------------------------------- /lib/store/pokemonv2_store.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/store/pokemonv2_store.g.dart -------------------------------------------------------------------------------- /lib/utils/consts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/utils/consts.dart -------------------------------------------------------------------------------- /lib/widgets/about_pokemon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/about_pokemon.dart -------------------------------------------------------------------------------- /lib/widgets/animated_fade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/animated_fade.dart -------------------------------------------------------------------------------- /lib/widgets/evolucoes_pokemon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/evolucoes_pokemon.dart -------------------------------------------------------------------------------- /lib/widgets/poke_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/poke_detail.dart -------------------------------------------------------------------------------- /lib/widgets/poke_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/poke_item.dart -------------------------------------------------------------------------------- /lib/widgets/progress_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/progress_bar.dart -------------------------------------------------------------------------------- /lib/widgets/status_pokemon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/lib/widgets/status_pokemon.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RenatoLucasMota/PokedexMobX/HEAD/web/index.html --------------------------------------------------------------------------------