From c0f102003dcd3ab11d5e292343dff029dc09c9f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cyanghuaxuan=E2=80=9D?= <“646903573@qq.com”> Date: Wed, 12 May 2021 09:27:06 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=B7=BB=E5=8A=A0=E8=AE=A2=E5=8D=95=E6=89=BE?= =?UTF-8?q?=E5=9B=9E=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/android/app/build.gradle | 2 +- .../order_found_page/order_found_search_page.dart | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 lib/pages/order_found_page/order_found_search_page.dart 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(); + } +}