gsettings 0.2.8 copy "gsettings: ^0.2.8" to clipboard
gsettings: ^0.2.8 copied to clipboard

PlatformLinux

Provides a client to access GSettings - a settings database used for storing user preferences on Linux.

example/example.dart

import 'package:gsettings/gsettings.dart';

void main() async {
  var settings = GSettings('org.gnome.desktop.interface');
  var value = await settings.get('font-name');
  var font = value.asString();
  print('Current font set to: $font');
  await settings.close();
}
13
likes
140
pub points
82%
popularity

Publisher

verified publishercanonical.com

Provides a client to access GSettings - a settings database used for storing user preferences on Linux.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MPL-2.0 (LICENSE)

Dependencies

dbus, xdg_directories

More

Packages that depend on gsettings