Libadwaita's widgets for Flutter. Following Gnome HIG and available on all platforms.
NOTE: For getting colors from gtk 3.0 theme use version <=0.9.8+1
libadwaita_bitsdojo
package.See the example app in the example
folder for more info.
adwaita_icons
For Adwaita Icons
libadwaita_bitsdojo
Example:
import 'package:libadwaita_bitsdojo/libadwaita_bitsdojo.dart';
AdwHeaderBar(
actions: AdwActions().bitsdojo,
//...
)
libadwaita_searchbar
Example:
import 'package:libadwaita_searchbar/libadwaita_searchbar.dart';
bool searchedTerm = '';
AdwSearchBar(
onSubmitted: (str) => setState(() => searchedTerm = str),
controller: const TextEditingController(),
//...
)
libadwaita_searchbar_ac
Example:
import 'package:libadwaita_searchbar_ac/libadwaita_searchbar_ac.dart';
bool searchedTerm = '';
AdwSearchBarAc(
suggestions: const ['Hi', 'Hello'],
onSubmitted: (str) => setState(() => searchedTerm = str),
controller: const TextEditingController(),
//...
)
libadwaita_nativeshell
Example:
import 'package:libadwaita_nativeshell/libadwaita_nativeshell.dart';
AdwHeaderBar(
actions: AdwActions().nativeshell(context),
//...
)
libadwaita_titlebar_buttons
Example:
import 'package:libadwaita_titlebar_buttons/libadwaita_titlebar_buttons.dart';
AdwHeaderBar(
controls: AdwControls().titlebarButtons(),
//...
)
Based on Insights ranking and the value of commits
AdwButton
, AdwAvatar
and improved some widgetsvery_good_analysis
and Fixed some codeTo sustain the development of this library we need someone who can help this library either through code or by donating to it. Donation will help us to live up in the world of unmaintained open source packages and to dedicate more time in improving this to live up to the mark. We will also add the name of the contributors or the donaters in the README section.
To donate directly you can use below link, don't forget to leave a message there:
Mozilla Public License 2.0
TLDR;