AI-Clipboard/lib/modules/home/home_view.dart
fengshengxiong 50c2738fc5 搭建框架:
1.状态管理、路由、依赖注入
2.屏幕适配
3.日志封装
2024-05-07 18:16:51 +08:00

21 lines
416 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'home_controller.dart';
class HomeView extends GetView<HomeController> {
const HomeView({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('AI Clipboard'),
),
body: const Center(
child: Text('AI Clipboard'),
),
);
}
}