mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-17 18:49:55 +08:00

I cannot seem to get it to look nice with this new version of Badges and now I'm reconsidering if it should be shown at all. The user doesn't **need** to setup the git repo. This app can be used without it perfectly fine.
17 lines
378 B
Dart
17 lines
378 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class GJAppBarMenuButton extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var appBarMenuButton = IconButton(
|
|
key: const ValueKey("DrawerButton"),
|
|
icon: const Icon(Icons.menu),
|
|
onPressed: () {
|
|
Scaffold.of(context).openDrawer();
|
|
},
|
|
);
|
|
|
|
return appBarMenuButton;
|
|
}
|
|
}
|