mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-12-13 19:47:17 +00:00
refactor tabbar: Homepage adaptation
1. remove redundant MaterialApp in GetMaterialApp 2. unified background color Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
15
flutter/lib/desktop/pages/desktop_setting_page.dart
Normal file
15
flutter/lib/desktop/pages/desktop_setting_page.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/cupertino.dart';
|
||||
|
||||
class DesktopSettingPage extends StatefulWidget {
|
||||
DesktopSettingPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<DesktopSettingPage> createState() => _DesktopSettingPageState();
|
||||
}
|
||||
|
||||
class _DesktopSettingPageState extends State<DesktopSettingPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Text("Settings");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user