mirror of
https://github.com/localsend/localsend.git
synced 2026-04-28 19:12:48 -04:00
76 lines
2.7 KiB
Dart
76 lines
2.7 KiB
Dart
import 'dart:io';
|
|
import 'dart:ui';
|
|
|
|
import 'package:bitsdojo_window/bitsdojo_window.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:localsend_app/util/native/platform_check.dart';
|
|
|
|
class CustomBackButton extends StatelessWidget {
|
|
final Color? color;
|
|
|
|
const CustomBackButton({super.key, this.color});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final isRtl = Directionality.of(context) == TextDirection.rtl;
|
|
return IconButton(
|
|
icon: Icon(
|
|
isRtl ? Icons.arrow_forward_ios_rounded : Icons.arrow_back_ios_new_rounded,
|
|
color: color ?? IconTheme.of(context).color,
|
|
),
|
|
tooltip: MaterialLocalizations.of(context).backButtonTooltip,
|
|
onPressed: () async {
|
|
await Navigator.maybePop(context);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
PreferredSizeWidget basicLocalSendAppbar(String title) {
|
|
// Creates a very simple new appBar to support bitsdojo_windows on mac and make them draggable
|
|
// if you want have more items on here for a specific page, make sure to add it here as an option
|
|
// so that mac users can still appreciate this near native new design
|
|
return checkPlatform([TargetPlatform.macOS])
|
|
? PreferredSize(
|
|
preferredSize: const Size.fromHeight(kToolbarHeight),
|
|
child: ClipRRect(
|
|
child: BackdropFilter(
|
|
filter: ImageFilter.blur(
|
|
sigmaX: 20.0,
|
|
sigmaY: 20.0,
|
|
),
|
|
child: MoveWindow(
|
|
child: Container(
|
|
color: Colors.transparent,
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
// Padding space for macOS traffic lights
|
|
if (!kIsWeb && Platform.isMacOS) const SizedBox(width: 60),
|
|
// Originally leading Icon
|
|
CustomBackButton(),
|
|
// Center Title
|
|
Expanded(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Center(
|
|
child: FittedBox(
|
|
fit: BoxFit.scaleDown,
|
|
child: Text(title, style: TextStyle(fontSize: 100, fontWeight: FontWeight.normal)),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
// For true centering of the icon since it shifted
|
|
const SizedBox(width: 60),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
: AppBar(title: Text(title));
|
|
}
|