Files
iroute/lib/07/01/pages/page_c.dart
toly fcaabb18dd v
2023-08-31 07:53:30 +08:00

18 lines
309 B
Dart

import 'package:flutter/material.dart';
class PageC extends StatelessWidget {
const PageC({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('C'),),
body: Center(
child: Text(
'C'
),
),
);
}
}