mobile-eda/lib/presentation/screens/project_list_screen.dart

25 lines
562 B
Dart

import 'package:flutter/material.dart';
/// 项目列表页面
class ProjectListScreen extends StatelessWidget {
const ProjectListScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('项目列表'),
),
body: const Center(
child: Text('项目列表 - 开发中'),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
// TODO: 新建项目
},
child: const Icon(Icons.add),
),
);
}
}