提交 27437e9f authored 作者: shixiaochen's avatar shixiaochen

1、自定义返回箭头;

上级 fd495233
......@@ -16,7 +16,16 @@ class MyApp extends StatefulWidget {
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(home: HomePage());
return MaterialApp(
home: HomePage(),
theme: ThemeData.light().copyWith(
appBarTheme: const AppBarTheme(
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
elevation: 5.0,
),
),
);
}
}
......@@ -35,10 +44,11 @@ class HomePage extends StatelessWidget {
onPressed: () {
var url =
"http://h5.clxkj.cn/userFeedback?productCode=msl&userMobile=1222222222&userName=马上来";
Navigator.push(
Navigator.pushAndRemoveUntil(
context,
CupertinoPageRoute(
builder: (context) => ComplaintWebPage(url: url)));
builder: (context) => ComplaintWebPage(url: url)),
(route) => false);
},
child: const Text("反馈投诉")),
],
......
......@@ -37,7 +37,16 @@ class _ComplaintWebPageState extends State<ComplaintWebPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(_title ?? ""), centerTitle: true),
appBar: AppBar(
leading: InkWell(
onTap: () {
Navigator.pop(context);
},
child: const Icon(Icons.arrow_back_ios),
),
title: Text(_title ?? ""),
centerTitle: true,
),
body: WebViewWidget(controller: _webViewController),
);
}
......@@ -64,10 +73,10 @@ class _ComplaintWebPageState extends State<ComplaintWebPage> {
..setJavaScriptMode(JavaScriptMode.unrestricted)
..addJavaScriptChannel("finishPage",
onMessageReceived: (JavaScriptMessage message) async {
debugPrint(
"JavascriptChannel:method = finishPage message = ${message.message}");
finishPage(message.message);
})
debugPrint(
"JavascriptChannel:method = finishPage message = ${message.message}");
finishPage(message.message);
})
..setNavigationDelegate(
NavigationDelegate(onPageFinished: _onPageFinished))
..loadRequest(Uri.parse(widget.url ?? ""));
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论