gitextract_c3tyndr2/ ├── .gitignore ├── README.md ├── README_CN.md ├── android/ │ ├── app/ │ │ ├── build.gradle │ │ └── src/ │ │ ├── debug/ │ │ │ └── AndroidManifest.xml │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin/ │ │ │ │ └── io/ │ │ │ │ └── ditclear/ │ │ │ │ └── flutter_challenge_googlemaps/ │ │ │ │ └── MainActivity.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── launch_background.xml │ │ │ └── values/ │ │ │ └── styles.xml │ │ └── profile/ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ └── settings.gradle ├── apk/ │ └── app.apk ├── ios/ │ ├── Flutter/ │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.imageset/ │ │ │ ├── Contents.json │ │ │ └── README.md │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ └── Runner.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── WorkspaceSettings.xcsettings ├── lib/ │ ├── components/ │ │ ├── components.dart │ │ ├── explore_content_widget.dart │ │ ├── explore_widget.dart │ │ ├── map_button.dart │ │ ├── menu_widget.dart │ │ ├── recent_search_widget.dart │ │ ├── search_back_widget.dart │ │ ├── search_menu_widget.dart │ │ └── search_widget.dart │ ├── helper/ │ │ └── ui_helper.dart │ ├── home_page.dart │ └── main.dart ├── pubspec.yaml └── test/ └── widget_test.dart