7
This commit is contained in:
@@ -16,6 +16,7 @@ class MyApp extends StatelessWidget {
|
|||||||
debugShowCheckedModeBanner: false,
|
debugShowCheckedModeBanner: false,
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
appBarTheme: AppBarTheme(
|
appBarTheme: AppBarTheme(
|
||||||
|
elevation: 0,
|
||||||
iconTheme: IconThemeData(color: Colors.black),
|
iconTheme: IconThemeData(color: Colors.black),
|
||||||
titleTextStyle: TextStyle(color: Colors.black,fontSize: 18,fontWeight: FontWeight.bold)
|
titleTextStyle: TextStyle(color: Colors.black,fontSize: 18,fontWeight: FontWeight.bold)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:iroute/07/01/pages/page_b.dart';
|
import 'page_b.dart';
|
||||||
|
|
||||||
class PageA extends StatelessWidget {
|
class PageA extends StatelessWidget {
|
||||||
const PageA({super.key});
|
const PageA({super.key});
|
||||||
@@ -10,14 +10,13 @@ class PageA extends StatelessWidget {
|
|||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: bgColor,
|
backgroundColor: bgColor,
|
||||||
appBar: AppBar(title: Text('A'),
|
appBar: AppBar(title: const Text('A'),
|
||||||
elevation: 0,
|
|
||||||
backgroundColor: bgColor,
|
backgroundColor: bgColor,
|
||||||
),
|
),
|
||||||
body: Center(
|
body: Center(
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed: ()=>toPageB(context),
|
onPressed: ()=>toPageB(context),
|
||||||
child: Text('Push B'),
|
child: const Text('Push B'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -11,14 +11,13 @@ class PageB extends StatelessWidget {
|
|||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
backgroundColor: bgColor,
|
backgroundColor: bgColor,
|
||||||
appBar: AppBar(title: Text('B',style: TextStyle(color: Colors.black),),
|
appBar: AppBar(title: const Text('B',),
|
||||||
elevation: 0,
|
|
||||||
backgroundColor: bgColor,
|
backgroundColor: bgColor,
|
||||||
),
|
),
|
||||||
body: Center(
|
body: Center(
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed: ()=>toPageC(context),
|
onPressed: ()=>toPageC(context),
|
||||||
child: Text('Push C'),
|
child: const Text('Push C'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,12 +5,16 @@ class PageC extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
const Color bgColor = Color(0xffFFE6CD);
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(title: Text('C'),),
|
backgroundColor: bgColor,
|
||||||
body: Center(
|
appBar: AppBar(
|
||||||
child: Text(
|
title: const Text('C'),
|
||||||
'C'
|
backgroundColor: bgColor,
|
||||||
),
|
),
|
||||||
|
body: const Center(
|
||||||
|
child: Text('到达终点'),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
27
lib/07/02/main.dart
Normal file
27
lib/07/02/main.dart
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
import 'pages/page_a.dart';
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
runApp(const MyApp());
|
||||||
|
}
|
||||||
|
|
||||||
|
class MyApp extends StatelessWidget {
|
||||||
|
const MyApp({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return MaterialApp(
|
||||||
|
title: 'Flutter Demo',
|
||||||
|
debugShowCheckedModeBanner: false,
|
||||||
|
theme: ThemeData(
|
||||||
|
appBarTheme: AppBarTheme(
|
||||||
|
elevation: 0,
|
||||||
|
iconTheme: IconThemeData(color: Colors.black),
|
||||||
|
titleTextStyle: TextStyle(color: Colors.black,fontSize: 18,fontWeight: FontWeight.bold)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
home: const PageA(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
28
lib/07/02/pages/page_a.dart
Normal file
28
lib/07/02/pages/page_a.dart
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'page_b.dart';
|
||||||
|
|
||||||
|
class PageA extends StatelessWidget {
|
||||||
|
const PageA({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
const Color bgColor = Color(0xffCCFFFF);
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
appBar: AppBar(title: const Text('A'),
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
),
|
||||||
|
body: Center(
|
||||||
|
child: ElevatedButton(
|
||||||
|
onPressed: ()=>toPageB(context),
|
||||||
|
child: const Text('Push B'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void toPageB(BuildContext context){
|
||||||
|
Navigator.of(context).pushReplacement(MaterialPageRoute(builder: (_)=> const PageB()));
|
||||||
|
}
|
||||||
|
}
|
||||||
29
lib/07/02/pages/page_b.dart
Normal file
29
lib/07/02/pages/page_b.dart
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
import 'page_c.dart';
|
||||||
|
|
||||||
|
class PageB extends StatelessWidget {
|
||||||
|
const PageB({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
const Color bgColor = Color(0xffCCE5FF);
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
appBar: AppBar(title: const Text('B',),
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
),
|
||||||
|
body: Center(
|
||||||
|
child: ElevatedButton(
|
||||||
|
onPressed: ()=>toPageC(context),
|
||||||
|
child: const Text('Push C'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void toPageC(BuildContext context){
|
||||||
|
Navigator.of(context).pushReplacement(MaterialPageRoute(builder: (_)=> const PageC()));
|
||||||
|
}
|
||||||
|
}
|
||||||
21
lib/07/02/pages/page_c.dart
Normal file
21
lib/07/02/pages/page_c.dart
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class PageC extends StatelessWidget {
|
||||||
|
const PageC({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
const Color bgColor = Color(0xffFFE6CD);
|
||||||
|
|
||||||
|
return Scaffold(
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
appBar: AppBar(
|
||||||
|
title: const Text('C'),
|
||||||
|
backgroundColor: bgColor,
|
||||||
|
),
|
||||||
|
body: const Center(
|
||||||
|
child: Text('到达终点'),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
4
lib/07/节点介绍.txt
Normal file
4
lib/07/节点介绍.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
01: 分析 push 方法。
|
||||||
|
A、B、C 三个界面跳转。
|
||||||
|
|
||||||
|
02: replace
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastSwiftUpdateCheck = 0920;
|
LastSwiftUpdateCheck = 0920;
|
||||||
LastUpgradeCheck = 1300;
|
LastUpgradeCheck = 1430;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
331C80D4294CF70F00263BE5 = {
|
331C80D4294CF70F00263BE5 = {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1300"
|
LastUpgradeVersion = "1430"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|||||||
Reference in New Issue
Block a user