This commit is contained in:
toly
2023-08-31 16:04:25 +08:00
parent fcaabb18dd
commit 4c4d4f2d5b
11 changed files with 126 additions and 14 deletions

View File

@@ -5,12 +5,16 @@ class PageC extends StatelessWidget {
@override
Widget build(BuildContext context) {
const Color bgColor = Color(0xffFFE6CD);
return Scaffold(
appBar: AppBar(title: Text('C'),),
body: Center(
child: Text(
'C'
),
backgroundColor: bgColor,
appBar: AppBar(
title: const Text('C'),
backgroundColor: bgColor,
),
body: const Center(
child: Text('到达终点'),
),
);
}