├── .gitignore ├── .gradle ├── 5.6.4 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── gc.properties ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties └── vcs-1 │ └── gc.properties ├── .metadata ├── LICENSE ├── README.md ├── assets └── find │ ├── 1 │ └── find_waterfall.json │ ├── 2 │ └── find_waterfall.json │ ├── 3 │ └── find_waterfall.json │ ├── 4 │ └── find_waterfall.json │ └── 5 │ └── find_waterfall.json ├── doc ├── 10.gif ├── 11.gif ├── 12.gif ├── 3.gif ├── 4.gif ├── 5.gif ├── 6.gif ├── 7.gif ├── 8.gif ├── 9.gif ├── WX20200510-132511@2x.png └── credentials.png ├── flutter_food.iml ├── food.iml ├── food_android.iml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── a0e.png ├── a0l.png ├── a1c.png ├── a1d.png ├── a1t.png ├── a2i.png ├── a2k.png ├── a3n.png ├── a3r.png ├── a4d.png ├── a4e.png ├── a4f.png ├── a4g.png ├── a4h.png ├── a4i.png ├── a4j.png ├── a5h.png ├── a5i.png ├── a5j.png ├── a5k.png ├── a5l.png ├── a5m.png ├── a6j.png ├── a6w.png ├── a7a.png ├── a_e.png ├── a_y.png ├── aal.png ├── aeg.jpg ├── aeu.png ├── afa.png ├── afh.png ├── ahh.png ├── ai7.png ├── aik.png ├── ail.png ├── ain.png ├── air.png ├── ait.png ├── aj2.png ├── aj4.png ├── aj5.png ├── ajj.png ├── ajk.png ├── ak7.png ├── ak8.png ├── akj.png ├── akk.png ├── alo.png ├── alp.png ├── alq.png ├── alr.png ├── als.png ├── alt.png ├── alu.png ├── am2.png ├── am3.png ├── am5.png ├── b70.png ├── b71.png ├── ba5.png ├── ba6.png ├── ba7.png ├── bao.png ├── bdi.png ├── bdl.png ├── bdo.png ├── bdp.png ├── bdr.png ├── bdt.png ├── bdu.png ├── bdy.png ├── beb.png ├── bec.png ├── bej.png ├── bf2.png ├── bjp.png ├── bk0.png ├── bk1.png ├── ble.png ├── yk.png ├── yl.png └── zg.png ├── lib ├── banner │ └── banner_view.dart ├── browser │ └── simple_browser.dart ├── config │ ├── build_config.dart │ └── network_config.dart ├── home.dart ├── main.dart ├── model │ ├── find_model.dart │ ├── find_waterfall_model.dart │ ├── home_discount_grid_model.dart │ ├── home_exclusive_grid_model.dart │ ├── home_grid_nav_model.dart │ ├── home_model.dart │ ├── home_navigation_model.dart │ ├── home_tab_model.dart │ ├── home_tab_view_model.dart │ ├── order_model.dart │ ├── store_info_model.dart │ └── store_info_shopping_model.dart ├── pages │ ├── find_page.dart │ ├── home_page.dart │ ├── mine_page.dart │ └── order_page.dart ├── ui │ ├── find_tab.dart │ ├── find_tab_view.dart │ ├── find_tab_view_waterfall.dart │ ├── home_discount.dart │ ├── home_discount_grid.dart │ ├── home_exclusive_grid.dart │ ├── home_grid_nav.dart │ ├── home_list_tile.dart │ ├── home_navigation.dart │ ├── home_search_sliver.dart │ ├── home_tab_bar.dart │ ├── home_tab_bar_delegate.dart │ ├── home_tab_view.dart │ ├── home_tab_view_list.dart │ ├── home_view_pager_sliver.dart │ ├── location_info.dart │ ├── mine_card.dart │ ├── mine_member_card.dart │ ├── mine_user_info.dart │ ├── order_list.dart │ ├── order_list_view.dart │ ├── product_card.dart │ ├── product_list_view.dart │ ├── product_sidebar.dart │ ├── search_info.dart │ ├── store_info.dart │ ├── store_info_summary.dart │ ├── store_order_search_sliver.dart │ ├── store_order_summary_sliver.dart │ ├── store_search_sliver.dart │ ├── store_tab_bar.dart │ ├── store_tab_view_brand.dart │ ├── store_tab_view_evaluation.dart │ ├── store_tab_view_order.dart │ ├── store_tab_view_order_details.dart │ ├── system_settings.dart │ ├── transport_map.dart │ ├── transport_map_more_sliver.dart │ ├── undone_show.dart │ └── user_info.dart ├── utils │ └── route_utils.dart └── widget │ ├── circle_portrait.dart │ ├── expand_introduction.dart │ ├── expand_number.dart │ ├── load_image_placeholder.dart │ ├── load_view.dart │ ├── location_refresh_view.dart │ ├── location_text_field.dart │ ├── network_error_view.dart │ ├── opacity_title.dart │ ├── order_empty_view.dart │ ├── search_voice_view.dart │ ├── shopping_cart.dart │ ├── simple_banner_view.dart │ ├── transport_map_knight_info.dart │ └── wrap_cache_image.dart ├── local.properties ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/5.6.4/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/5.6.4/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/.gradle/5.6.4/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/5.6.4/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 12 15:57:15 CST 2020 2 | gradle.version=5.6.4 3 | -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/README.md -------------------------------------------------------------------------------- /assets/find/1/find_waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/assets/find/1/find_waterfall.json -------------------------------------------------------------------------------- /assets/find/2/find_waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/assets/find/2/find_waterfall.json -------------------------------------------------------------------------------- /assets/find/3/find_waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/assets/find/3/find_waterfall.json -------------------------------------------------------------------------------- /assets/find/4/find_waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/assets/find/4/find_waterfall.json -------------------------------------------------------------------------------- /assets/find/5/find_waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/assets/find/5/find_waterfall.json -------------------------------------------------------------------------------- /doc/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/10.gif -------------------------------------------------------------------------------- /doc/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/11.gif -------------------------------------------------------------------------------- /doc/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/12.gif -------------------------------------------------------------------------------- /doc/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/3.gif -------------------------------------------------------------------------------- /doc/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/4.gif -------------------------------------------------------------------------------- /doc/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/5.gif -------------------------------------------------------------------------------- /doc/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/6.gif -------------------------------------------------------------------------------- /doc/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/7.gif -------------------------------------------------------------------------------- /doc/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/8.gif -------------------------------------------------------------------------------- /doc/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/9.gif -------------------------------------------------------------------------------- /doc/WX20200510-132511@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/WX20200510-132511@2x.png -------------------------------------------------------------------------------- /doc/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/doc/credentials.png -------------------------------------------------------------------------------- /flutter_food.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/flutter_food.iml -------------------------------------------------------------------------------- /food.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/food.iml -------------------------------------------------------------------------------- /food_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/food_android.iml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/a0e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a0e.png -------------------------------------------------------------------------------- /images/a0l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a0l.png -------------------------------------------------------------------------------- /images/a1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a1c.png -------------------------------------------------------------------------------- /images/a1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a1d.png -------------------------------------------------------------------------------- /images/a1t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a1t.png -------------------------------------------------------------------------------- /images/a2i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a2i.png -------------------------------------------------------------------------------- /images/a2k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a2k.png -------------------------------------------------------------------------------- /images/a3n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a3n.png -------------------------------------------------------------------------------- /images/a3r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a3r.png -------------------------------------------------------------------------------- /images/a4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4d.png -------------------------------------------------------------------------------- /images/a4e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4e.png -------------------------------------------------------------------------------- /images/a4f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4f.png -------------------------------------------------------------------------------- /images/a4g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4g.png -------------------------------------------------------------------------------- /images/a4h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4h.png -------------------------------------------------------------------------------- /images/a4i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4i.png -------------------------------------------------------------------------------- /images/a4j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a4j.png -------------------------------------------------------------------------------- /images/a5h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a5h.png -------------------------------------------------------------------------------- /images/a5i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a5i.png -------------------------------------------------------------------------------- /images/a5j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a5j.png -------------------------------------------------------------------------------- /images/a5k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a5k.png -------------------------------------------------------------------------------- /images/a5l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a5l.png -------------------------------------------------------------------------------- /images/a5m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a5m.png -------------------------------------------------------------------------------- /images/a6j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a6j.png -------------------------------------------------------------------------------- /images/a6w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a6w.png -------------------------------------------------------------------------------- /images/a7a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a7a.png -------------------------------------------------------------------------------- /images/a_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a_e.png -------------------------------------------------------------------------------- /images/a_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/a_y.png -------------------------------------------------------------------------------- /images/aal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aal.png -------------------------------------------------------------------------------- /images/aeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aeg.jpg -------------------------------------------------------------------------------- /images/aeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aeu.png -------------------------------------------------------------------------------- /images/afa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/afa.png -------------------------------------------------------------------------------- /images/afh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/afh.png -------------------------------------------------------------------------------- /images/ahh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ahh.png -------------------------------------------------------------------------------- /images/ai7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ai7.png -------------------------------------------------------------------------------- /images/aik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aik.png -------------------------------------------------------------------------------- /images/ail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ail.png -------------------------------------------------------------------------------- /images/ain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ain.png -------------------------------------------------------------------------------- /images/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/air.png -------------------------------------------------------------------------------- /images/ait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ait.png -------------------------------------------------------------------------------- /images/aj2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aj2.png -------------------------------------------------------------------------------- /images/aj4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aj4.png -------------------------------------------------------------------------------- /images/aj5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/aj5.png -------------------------------------------------------------------------------- /images/ajj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ajj.png -------------------------------------------------------------------------------- /images/ajk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ajk.png -------------------------------------------------------------------------------- /images/ak7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ak7.png -------------------------------------------------------------------------------- /images/ak8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ak8.png -------------------------------------------------------------------------------- /images/akj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/akj.png -------------------------------------------------------------------------------- /images/akk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/akk.png -------------------------------------------------------------------------------- /images/alo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/alo.png -------------------------------------------------------------------------------- /images/alp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/alp.png -------------------------------------------------------------------------------- /images/alq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/alq.png -------------------------------------------------------------------------------- /images/alr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/alr.png -------------------------------------------------------------------------------- /images/als.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/als.png -------------------------------------------------------------------------------- /images/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/alt.png -------------------------------------------------------------------------------- /images/alu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/alu.png -------------------------------------------------------------------------------- /images/am2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/am2.png -------------------------------------------------------------------------------- /images/am3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/am3.png -------------------------------------------------------------------------------- /images/am5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/am5.png -------------------------------------------------------------------------------- /images/b70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/b70.png -------------------------------------------------------------------------------- /images/b71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/b71.png -------------------------------------------------------------------------------- /images/ba5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ba5.png -------------------------------------------------------------------------------- /images/ba6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ba6.png -------------------------------------------------------------------------------- /images/ba7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ba7.png -------------------------------------------------------------------------------- /images/bao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bao.png -------------------------------------------------------------------------------- /images/bdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdi.png -------------------------------------------------------------------------------- /images/bdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdl.png -------------------------------------------------------------------------------- /images/bdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdo.png -------------------------------------------------------------------------------- /images/bdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdp.png -------------------------------------------------------------------------------- /images/bdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdr.png -------------------------------------------------------------------------------- /images/bdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdt.png -------------------------------------------------------------------------------- /images/bdu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdu.png -------------------------------------------------------------------------------- /images/bdy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bdy.png -------------------------------------------------------------------------------- /images/beb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/beb.png -------------------------------------------------------------------------------- /images/bec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bec.png -------------------------------------------------------------------------------- /images/bej.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bej.png -------------------------------------------------------------------------------- /images/bf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bf2.png -------------------------------------------------------------------------------- /images/bjp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bjp.png -------------------------------------------------------------------------------- /images/bk0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bk0.png -------------------------------------------------------------------------------- /images/bk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/bk1.png -------------------------------------------------------------------------------- /images/ble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/ble.png -------------------------------------------------------------------------------- /images/yk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/yk.png -------------------------------------------------------------------------------- /images/yl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/yl.png -------------------------------------------------------------------------------- /images/zg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/images/zg.png -------------------------------------------------------------------------------- /lib/banner/banner_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/banner/banner_view.dart -------------------------------------------------------------------------------- /lib/browser/simple_browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/browser/simple_browser.dart -------------------------------------------------------------------------------- /lib/config/build_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/config/build_config.dart -------------------------------------------------------------------------------- /lib/config/network_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/config/network_config.dart -------------------------------------------------------------------------------- /lib/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/home.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/find_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/find_model.dart -------------------------------------------------------------------------------- /lib/model/find_waterfall_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/find_waterfall_model.dart -------------------------------------------------------------------------------- /lib/model/home_discount_grid_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_discount_grid_model.dart -------------------------------------------------------------------------------- /lib/model/home_exclusive_grid_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_exclusive_grid_model.dart -------------------------------------------------------------------------------- /lib/model/home_grid_nav_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_grid_nav_model.dart -------------------------------------------------------------------------------- /lib/model/home_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_model.dart -------------------------------------------------------------------------------- /lib/model/home_navigation_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_navigation_model.dart -------------------------------------------------------------------------------- /lib/model/home_tab_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_tab_model.dart -------------------------------------------------------------------------------- /lib/model/home_tab_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/home_tab_view_model.dart -------------------------------------------------------------------------------- /lib/model/order_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/order_model.dart -------------------------------------------------------------------------------- /lib/model/store_info_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/store_info_model.dart -------------------------------------------------------------------------------- /lib/model/store_info_shopping_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/model/store_info_shopping_model.dart -------------------------------------------------------------------------------- /lib/pages/find_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/pages/find_page.dart -------------------------------------------------------------------------------- /lib/pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/pages/home_page.dart -------------------------------------------------------------------------------- /lib/pages/mine_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/pages/mine_page.dart -------------------------------------------------------------------------------- /lib/pages/order_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/pages/order_page.dart -------------------------------------------------------------------------------- /lib/ui/find_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/find_tab.dart -------------------------------------------------------------------------------- /lib/ui/find_tab_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/find_tab_view.dart -------------------------------------------------------------------------------- /lib/ui/find_tab_view_waterfall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/find_tab_view_waterfall.dart -------------------------------------------------------------------------------- /lib/ui/home_discount.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_discount.dart -------------------------------------------------------------------------------- /lib/ui/home_discount_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_discount_grid.dart -------------------------------------------------------------------------------- /lib/ui/home_exclusive_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_exclusive_grid.dart -------------------------------------------------------------------------------- /lib/ui/home_grid_nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_grid_nav.dart -------------------------------------------------------------------------------- /lib/ui/home_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_list_tile.dart -------------------------------------------------------------------------------- /lib/ui/home_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_navigation.dart -------------------------------------------------------------------------------- /lib/ui/home_search_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_search_sliver.dart -------------------------------------------------------------------------------- /lib/ui/home_tab_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_tab_bar.dart -------------------------------------------------------------------------------- /lib/ui/home_tab_bar_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_tab_bar_delegate.dart -------------------------------------------------------------------------------- /lib/ui/home_tab_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_tab_view.dart -------------------------------------------------------------------------------- /lib/ui/home_tab_view_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_tab_view_list.dart -------------------------------------------------------------------------------- /lib/ui/home_view_pager_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/home_view_pager_sliver.dart -------------------------------------------------------------------------------- /lib/ui/location_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/location_info.dart -------------------------------------------------------------------------------- /lib/ui/mine_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/mine_card.dart -------------------------------------------------------------------------------- /lib/ui/mine_member_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/mine_member_card.dart -------------------------------------------------------------------------------- /lib/ui/mine_user_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/mine_user_info.dart -------------------------------------------------------------------------------- /lib/ui/order_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/order_list.dart -------------------------------------------------------------------------------- /lib/ui/order_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/order_list_view.dart -------------------------------------------------------------------------------- /lib/ui/product_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/product_card.dart -------------------------------------------------------------------------------- /lib/ui/product_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/product_list_view.dart -------------------------------------------------------------------------------- /lib/ui/product_sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/product_sidebar.dart -------------------------------------------------------------------------------- /lib/ui/search_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/search_info.dart -------------------------------------------------------------------------------- /lib/ui/store_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_info.dart -------------------------------------------------------------------------------- /lib/ui/store_info_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_info_summary.dart -------------------------------------------------------------------------------- /lib/ui/store_order_search_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_order_search_sliver.dart -------------------------------------------------------------------------------- /lib/ui/store_order_summary_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_order_summary_sliver.dart -------------------------------------------------------------------------------- /lib/ui/store_search_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_search_sliver.dart -------------------------------------------------------------------------------- /lib/ui/store_tab_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_tab_bar.dart -------------------------------------------------------------------------------- /lib/ui/store_tab_view_brand.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_tab_view_brand.dart -------------------------------------------------------------------------------- /lib/ui/store_tab_view_evaluation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_tab_view_evaluation.dart -------------------------------------------------------------------------------- /lib/ui/store_tab_view_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_tab_view_order.dart -------------------------------------------------------------------------------- /lib/ui/store_tab_view_order_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/store_tab_view_order_details.dart -------------------------------------------------------------------------------- /lib/ui/system_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/system_settings.dart -------------------------------------------------------------------------------- /lib/ui/transport_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/transport_map.dart -------------------------------------------------------------------------------- /lib/ui/transport_map_more_sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/transport_map_more_sliver.dart -------------------------------------------------------------------------------- /lib/ui/undone_show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/undone_show.dart -------------------------------------------------------------------------------- /lib/ui/user_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/ui/user_info.dart -------------------------------------------------------------------------------- /lib/utils/route_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/utils/route_utils.dart -------------------------------------------------------------------------------- /lib/widget/circle_portrait.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/circle_portrait.dart -------------------------------------------------------------------------------- /lib/widget/expand_introduction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/expand_introduction.dart -------------------------------------------------------------------------------- /lib/widget/expand_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/expand_number.dart -------------------------------------------------------------------------------- /lib/widget/load_image_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/load_image_placeholder.dart -------------------------------------------------------------------------------- /lib/widget/load_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/load_view.dart -------------------------------------------------------------------------------- /lib/widget/location_refresh_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/location_refresh_view.dart -------------------------------------------------------------------------------- /lib/widget/location_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/location_text_field.dart -------------------------------------------------------------------------------- /lib/widget/network_error_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/network_error_view.dart -------------------------------------------------------------------------------- /lib/widget/opacity_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/opacity_title.dart -------------------------------------------------------------------------------- /lib/widget/order_empty_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/order_empty_view.dart -------------------------------------------------------------------------------- /lib/widget/search_voice_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/search_voice_view.dart -------------------------------------------------------------------------------- /lib/widget/shopping_cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/shopping_cart.dart -------------------------------------------------------------------------------- /lib/widget/simple_banner_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/simple_banner_view.dart -------------------------------------------------------------------------------- /lib/widget/transport_map_knight_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/transport_map_knight_info.dart -------------------------------------------------------------------------------- /lib/widget/wrap_cache_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/lib/widget/wrap_cache_image.dart -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/local.properties -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangJ0720/flutter_food/HEAD/test/widget_test.dart --------------------------------------------------------------------------------