dghub_appbar 1.1.7 dghub_appbar: ^1.1.7 copied to clipboard
Min Thant Htet.
import 'package:flutter/material.dart';
import 'package:dghub_appbar/dghub_appbar.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
backgroundColor: Colors.grey[100],
body: SafeArea(
child: NestedScrollView(
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return [
DGHubAppBar(
config: AppBarConfig(
onTap: () {
print('da');
},
items: []))
];
},
body: SafeArea(
child: DGHubAppBarListWidget(
init: AppBarStyle(), result: (selected) {})),
)),
),
);
}
}