init project

This commit is contained in:
Kuloud
2023-12-22 21:23:24 +08:00
commit 1fb3d91106
461 changed files with 58770 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import 'package:flutter/cupertino.dart';
///demo的模板类
abstract class BasePage extends StatelessWidget {
final String title;
final String subTitle;
const BasePage(this.title, this.subTitle);
}