FunyMeeAI/lib/features/shell/main_screen.dart

14 lines
342 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:flutter/material.dart';
import '../home/home_screen.dart';
/// 根壳:设计稿首页无底部 Tab子页由首页按钮/路由 [Navigator.push] 进入。
class MainScreen extends StatelessWidget {
const MainScreen({super.key});
@override
Widget build(BuildContext context) {
return const HomeScreen();
}
}