-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(windows): windows global title bar
- Loading branch information
Showing
4 changed files
with
159 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,114 @@ | ||
import 'package:bitsdojo_window/bitsdojo_window.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_hooks/flutter_hooks.dart'; | ||
import 'package:hooks_riverpod/hooks_riverpod.dart'; | ||
import 'package:platform_ui/platform_ui.dart'; | ||
import 'package:spotube/utils/platform.dart'; | ||
|
||
class PageWindowTitleBar extends PlatformAppBar { | ||
class PageWindowTitleBar extends StatefulHookWidget with PreferredSizeWidget { | ||
final Widget? leading; | ||
final bool automaticallyImplyLeading; | ||
final Widget? title; | ||
final List<Widget>? actions; | ||
final Color? backgroundColor; | ||
final Color? foregroundColor; | ||
final IconThemeData? actionsIconTheme; | ||
final bool? centerTitle; | ||
final double? titleSpacing; | ||
final double toolbarOpacity; | ||
final double? leadingWidth; | ||
final TextStyle? toolbarTextStyle; | ||
final TextStyle? titleTextStyle; | ||
final double? titleWidth; | ||
final Widget? center; | ||
final bool hideWhenWindows; | ||
|
||
PageWindowTitleBar({ | ||
super.backgroundColor, | ||
List<Widget>? actions, | ||
super.actionsIconTheme, | ||
super.automaticallyImplyLeading = false, | ||
super.centerTitle, | ||
super.foregroundColor, | ||
super.key, | ||
super.leading, | ||
super.leadingWidth, | ||
Widget? center, | ||
super.titleSpacing, | ||
super.titleTextStyle, | ||
super.titleWidth, | ||
super.toolbarOpacity, | ||
super.toolbarTextStyle, | ||
}) : super( | ||
actions: [ | ||
...?actions, | ||
if (!kIsMacOS && !kIsMobile) | ||
platform == TargetPlatform.linux | ||
? MoveWindow(child: const PlatformWindowButtons()) | ||
: const PlatformWindowButtons(), | ||
], | ||
title: platform == TargetPlatform.linux | ||
? MoveWindow(child: Center(child: center)) | ||
: center, | ||
); | ||
Key? key, | ||
this.title, | ||
this.actions, | ||
this.center, | ||
this.toolbarOpacity = 1, | ||
this.backgroundColor, | ||
this.actionsIconTheme, | ||
this.automaticallyImplyLeading = false, | ||
this.centerTitle, | ||
this.foregroundColor, | ||
this.leading, | ||
this.leadingWidth, | ||
this.titleSpacing, | ||
this.titleTextStyle, | ||
this.titleWidth, | ||
this.toolbarTextStyle, | ||
this.hideWhenWindows = true, | ||
}) : super(key: key); | ||
|
||
@override | ||
Size get preferredSize => Size.fromHeight( | ||
platform == TargetPlatform.windows ? 33 : kToolbarHeight, | ||
); | ||
|
||
@override | ||
State<PageWindowTitleBar> createState() => _PageWindowTitleBarState(); | ||
} | ||
|
||
class _PageWindowTitleBarState extends State<PageWindowTitleBar> { | ||
@override | ||
Widget build(BuildContext context) { | ||
return MoveWindow(child: super.build(context)); | ||
useEffect(() { | ||
if (platform == TargetPlatform.windows && | ||
widget.hideWhenWindows && | ||
Navigator.of(context).canPop()) { | ||
final entry = OverlayEntry( | ||
builder: (context) => const Positioned( | ||
left: 5, | ||
top: 5, | ||
child: PlatformBackButton(), | ||
), | ||
); | ||
|
||
WidgetsBinding.instance.addPostFrameCallback((_) { | ||
Overlay.of(context)?.insert(entry); | ||
}); | ||
|
||
return () { | ||
entry.remove(); | ||
}; | ||
} | ||
return null; | ||
}, [platform, widget.hideWhenWindows]); | ||
|
||
var appBar = PlatformAppBar( | ||
actions: [ | ||
...?widget.actions, | ||
if (!kIsMacOS && !kIsMobile) | ||
platform == TargetPlatform.linux | ||
? MoveWindow(child: const PlatformWindowButtons()) | ||
: const PlatformWindowButtons(), | ||
], | ||
title: platform == TargetPlatform.linux | ||
? MoveWindow(child: Center(child: widget.center)) | ||
: widget.center, | ||
toolbarOpacity: widget.toolbarOpacity, | ||
backgroundColor: widget.backgroundColor, | ||
actionsIconTheme: widget.actionsIconTheme, | ||
automaticallyImplyLeading: widget.automaticallyImplyLeading, | ||
centerTitle: widget.centerTitle, | ||
foregroundColor: widget.foregroundColor, | ||
leading: widget.leading, | ||
leadingWidth: widget.leadingWidth, | ||
titleSpacing: widget.titleSpacing, | ||
titleTextStyle: widget.titleTextStyle, | ||
titleWidth: widget.titleWidth, | ||
toolbarTextStyle: widget.toolbarTextStyle, | ||
); | ||
|
||
if (platform == TargetPlatform.windows && widget.hideWhenWindows) { | ||
return const SizedBox.shrink(); | ||
} | ||
|
||
return MoveWindow( | ||
child: appBar, | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters