Skip to content

Instantly share code, notes, and snippets.

View DhrumilShah98's full-sized avatar
👨‍💻
Apes Together Strong

Dhrumil Shah DhrumilShah98

👨‍💻
Apes Together Strong
View GitHub Profile
@DhrumilShah98
DhrumilShah98 / app_bar_demo_widget.dart
Last active December 30, 2020 13:30
AppBar in Flutter
import 'package:flutter/material.dart';
void main() => runApp(AppBarDemoWidget());
enum MenuOptions {
FILTERS,
SETTINGS,
}
class AppBarDemoWidget extends StatelessWidget {