mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-03 19:39:20 +08:00
commit
a472439db7
@ -29,6 +29,10 @@ class _TabEntry {
|
|||||||
_TabEntry(this.name, this.widget, this.load);
|
_TabEntry(this.name, this.widget, this.load);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EdgeInsets? _menuPadding() {
|
||||||
|
return isDesktop ? kDesktopMenuPadding : null;
|
||||||
|
}
|
||||||
|
|
||||||
class _PeerTabPageState extends State<PeerTabPage>
|
class _PeerTabPageState extends State<PeerTabPage>
|
||||||
with SingleTickerProviderStateMixin {
|
with SingleTickerProviderStateMixin {
|
||||||
late final RxInt tabHiddenFlag;
|
late final RxInt tabHiddenFlag;
|
||||||
@ -38,25 +42,25 @@ class _PeerTabPageState extends State<PeerTabPage>
|
|||||||
_TabEntry(
|
_TabEntry(
|
||||||
'Recent Sessions',
|
'Recent Sessions',
|
||||||
RecentPeersView(
|
RecentPeersView(
|
||||||
menuPadding: kDesktopMenuPadding,
|
menuPadding: _menuPadding(),
|
||||||
),
|
),
|
||||||
bind.mainLoadRecentPeers),
|
bind.mainLoadRecentPeers),
|
||||||
_TabEntry(
|
_TabEntry(
|
||||||
'Favorites',
|
'Favorites',
|
||||||
FavoritePeersView(
|
FavoritePeersView(
|
||||||
menuPadding: kDesktopMenuPadding,
|
menuPadding: _menuPadding(),
|
||||||
),
|
),
|
||||||
bind.mainLoadFavPeers),
|
bind.mainLoadFavPeers),
|
||||||
_TabEntry(
|
_TabEntry(
|
||||||
'Discovered',
|
'Discovered',
|
||||||
DiscoveredPeersView(
|
DiscoveredPeersView(
|
||||||
menuPadding: kDesktopMenuPadding,
|
menuPadding: _menuPadding(),
|
||||||
),
|
),
|
||||||
bind.mainDiscover),
|
bind.mainDiscover),
|
||||||
_TabEntry(
|
_TabEntry(
|
||||||
'Address Book',
|
'Address Book',
|
||||||
const AddressBook(
|
AddressBook(
|
||||||
menuPadding: kDesktopMenuPadding,
|
menuPadding: _menuPadding(),
|
||||||
),
|
),
|
||||||
() => {}),
|
() => {}),
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user