diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 9769b65..244869a 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -45,7 +45,7 @@ android { applicationId "cn.zhios.zhiying" minSdkVersion 21 targetSdkVersion 28 - versionCode 1618056480 + versionCode 1718056480 versionName "10.6.0" aaptOptions.cruncherEnabled = false aaptOptions.useNewCruncher = false diff --git a/lib/pages/order_found_page/order_found_search_page.dart b/lib/pages/order_found_page/order_found_search_page.dart new file mode 100644 index 0000000..5852f33 --- /dev/null +++ b/lib/pages/order_found_page/order_found_search_page.dart @@ -0,0 +1,14 @@ +import 'package:flutter/material.dart'; + +///订单搜索页 +class OrderFoundSearchPage extends StatefulWidget { + @override + _OrderFoundSearchPageState createState() => _OrderFoundSearchPageState(); +} + +class _OrderFoundSearchPageState extends State { + @override + Widget build(BuildContext context) { + return Container(); + } +}