gtk 1.0.0-rc.3 gtk: ^1.0.0-rc.3 copied to clipboard
Implements GTK Widgets, themes and titlebar buttons in Flutter. Based on the GNOME HIG
import 'package:bitsdojo_window/bitsdojo_window.dart';
import 'package:flutter/material.dart';
import 'package:gtk/gtk.dart';
import 'package:window_decorations/window_decorations.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
MyApp({Key? key}) : super(key: key);
final ValueNotifier<bool> isDark = ValueNotifier(false);
@override
Widget build(BuildContext context) {
return ValueListenableBuilder<bool>(
valueListenable: isDark,
builder: (_, value, ___) {
return GnomeTheme(
isDark: value,
builder: (context) => MaterialApp(
debugShowCheckedModeBanner: false,
home: MyHomePage(isDark: isDark),
theme: GnomeTheme.of(context).themeData,
),
);
});
}
}
class MyHomePage extends StatefulWidget {
final ValueNotifier<bool> isDark;
const MyHomePage({Key? key, required this.isDark}) : super(key: key);
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
int _currentIndex = 0;
void _incrementCounter() => setState(() => _counter++);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
children: <Widget>[
GtkHeaderBar.bitsdojo(
appWindow: appWindow,
windowDecor: windowDecor,
leading: GtkHeaderButton(
icon: const Icon(Icons.add, size: 15),
onPressed: _incrementCounter),
center: MediaQuery.of(context).size.width >= 650
? buildViewSwitcher()
: const SizedBox(),
trailing: Row(
children: [
GtkPopupMenu(
body: Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
onTap: () => setState(() {
_counter = 0;
Navigator.of(context).pop();
}),
title: const Text('Reset Counter',
style: TextStyle(fontSize: 15)),
),
],
),
),
],
),
),
_currentIndex == 2
? Column(
children: [
GtkContainer(
child: SwitchListTile(
title: Text(
"Dark mode",
style: Theme.of(context).textTheme.bodyText1,
),
value: widget.isDark.value,
onChanged: (value) =>
setState(() => widget.isDark.value = value),
),
),
],
)
: _currentIndex == 1
? Expanded(
child: SingleChildScrollView(
child: Center(
child: GtkContainer(
child: ListView.separated(
shrinkWrap: true,
primary: false,
itemCount: 30,
itemBuilder: (context, index) => ListTile(
title: Text("Index $index"),
),
separatorBuilder:
(BuildContext context, int index) => Divider(
color: GnomeTheme.of(context).border,
),
),
),
),
),
)
: Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'You have pushed the add button this many times:'),
Text('$_counter',
style: Theme.of(context).textTheme.headline4),
],
),
),
],
),
bottomNavigationBar: MediaQuery.of(context).size.width < 650
? buildViewSwitcher(ViewSwitcherStyle.mobile)
: null,
);
}
GtkViewSwitcher buildViewSwitcher(
[ViewSwitcherStyle viewSwitcherStyle = ViewSwitcherStyle.desktop]) {
return GtkViewSwitcher(
height: 55,
tabs: const [
ViewSwitcherData(icon: Icons.near_me_outlined, title: "Counter"),
ViewSwitcherData(icon: Icons.list_outlined, title: "List View"),
ViewSwitcherData(icon: Icons.settings, title: "Settings")
],
style: viewSwitcherStyle,
currentIndex: _currentIndex,
onViewChanged: (index) => setState(() => _currentIndex = index),
);
}
}