rustdesk/lib/pages/home_page.dart

112 lines
3.5 KiB
Dart
Raw Normal View History

2020-11-15 20:04:05 +08:00
import 'package:flutter/material.dart';
import 'package:flutter_hbb/pages/chat_page.dart';
import 'package:flutter_hbb/pages/server_page.dart';
import 'package:flutter_hbb/pages/settings_page.dart';
import '../common.dart';
import 'connection_page.dart';
2020-11-15 20:04:05 +08:00
abstract class PageShape extends Widget {
final String title = "";
final Icon icon = Icon(null);
final List<Widget> appBarActions = [];
final ScrollController? scrollController = null;
}
2020-11-15 20:04:05 +08:00
class HomePage extends StatefulWidget {
HomePage({Key? key}) : super(key: key);
2020-11-15 20:04:05 +08:00
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
var _selectedIndex = 0;
2022-03-24 17:58:33 +08:00
final List<PageShape> _pages = [];
@override
void initState() {
super.initState();
_pages.addAll([
ConnectionPage(),
chatPage,
]);
2022-04-09 17:31:19 +08:00
if (isAndroid) {
2022-03-24 17:58:33 +08:00
_pages.add(ServerPage());
}
_pages.add(SettingsPage());
}
@override
Widget build(BuildContext context) {
2022-03-01 15:46:59 +08:00
return WillPopScope(
onWillPop: () async {
if (_selectedIndex != 0) {
setState(() {
_selectedIndex = 0;
});
} else {
return true;
}
return false;
},
child: Scaffold(
backgroundColor: MyTheme.grayBg,
appBar: AppBar(
centerTitle: true,
title: Text("RustDesk"),
actions: _pages.elementAt(_selectedIndex).appBarActions,
),
bottomNavigationBar: BottomNavigationBar(
key: navigationBarKey,
2022-03-01 15:46:59 +08:00
items: _pages
.map((page) =>
BottomNavigationBarItem(icon: page.icon, label: page.title))
.toList(),
currentIndex: _selectedIndex,
type: BottomNavigationBarType.fixed,
selectedItemColor: MyTheme.accent,
unselectedItemColor: MyTheme.darkGray,
onTap: (index) => setState(() {
// close chat overlay when go chat page
2022-03-24 17:58:33 +08:00
if (index == 1 && _selectedIndex != index) {
hideChatIconOverlay();
hideChatWindowOverlay();
}
2022-03-01 15:46:59 +08:00
_selectedIndex = index;
}),
),
body: Listener(
onPointerMove: (evt) {
final page = _pages.elementAt(_selectedIndex);
/// Flutter can't not catch PointerMoveEvent when size is 1
/// This will happen in Android AccessibilityService Input
/// android can't init dispatching size yet ,see: https://stackoverflow.com/questions/59960451/android-accessibility-dispatchgesture-is-it-possible-to-specify-pressure-for-a
/// use this temporary solution until flutter or android fixes the bug
if (evt.size == 1 && page.scrollController != null) {
final offset = page.scrollController!.offset.toDouble();
page.scrollController!.jumpTo(offset - evt.delta.dy);
}
},
child: _pages.elementAt(_selectedIndex)),
2022-03-01 15:46:59 +08:00
));
}
}
2022-03-24 17:58:33 +08:00
class WebHomePage extends StatelessWidget {
final connectionPage = ConnectionPage();
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: MyTheme.grayBg,
appBar: AppBar(
centerTitle: true,
2022-04-09 17:31:19 +08:00
title: Text("RustDesk" + (isWeb ? " (Beta) " : "")),
2022-03-24 17:58:33 +08:00
actions: connectionPage.appBarActions,
),
body: connectionPage,
);
}
}