feat(migrate): 将之前写好的部件迁移了过来
This commit is contained in:
20
lib/mine.dart
Normal file
20
lib/mine.dart
Normal file
@@ -0,0 +1,20 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'layout/LayoutScaffold.dart';
|
||||
|
||||
///
|
||||
/// 【我的】页
|
||||
///
|
||||
class Mine extends StatelessWidget {
|
||||
const Mine({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return LayoutScaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('我的'),
|
||||
),
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user