♻️ New auto impl leading
This commit is contained in:
18
lib/widgets/app_bar_leading.dart
Normal file
18
lib/widgets/app_bar_leading.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:responsive_framework/responsive_framework.dart';
|
||||
import 'package:surface/widgets/navigation/app_scaffold.dart';
|
||||
|
||||
class AutoAppBarLeading extends StatelessWidget {
|
||||
const AutoAppBarLeading({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return ResponsiveBreakpoints.of(context).smallerOrEqualTo(MOBILE)
|
||||
? DrawerButton(onPressed: () {
|
||||
globalRootScaffoldKey.currentState?.openDrawer();
|
||||
})
|
||||
: Navigator.canPop(context)
|
||||
? BackButton()
|
||||
: const SizedBox();
|
||||
}
|
||||
}
|
@@ -56,7 +56,7 @@ class _AppNavigationDrawerState extends State<AppNavigationDrawer> {
|
||||
],
|
||||
).padding(
|
||||
horizontal: 32,
|
||||
top: MediaQuery.of(context).padding.top > 16 ? 8 : 16,
|
||||
top: MediaQuery.of(context).padding.top > 16 ? 8 : 24,
|
||||
bottom: 8,
|
||||
),
|
||||
...destinations.where((ele) => ele.isPinned).map((ele) {
|
||||
|
Reference in New Issue
Block a user