dyna 0.0.1-beta.1 copy "dyna: ^0.0.1-beta.1" to clipboard
dyna: ^0.0.1-beta.1 copied to clipboard

A widget that provides reactive ColorSchemes based on given source/seed color.

Dyna #

Dyna wraps your app to provide ColorSchemes based on user wallpaper (currenly only on Android 12+) or given source color. You can plug these schemes right into your app and update your app's theme in real-time.

https://user-images.githubusercontent.com/2550945/147409734-d8417bef-8428-4109-a199-79ef12966aa6.mp4

Dyna(
  builder: (context, ColorScheme light, ColorScheme dark) {
    return MaterialApp(
      title: 'Dyna Demo',
      theme: AppTheme.make(light),
      darkTheme: AppTheme.make(dark),
    );
  },
);
ColorPicker(
  pickerColor: context.dyna.color ?? Colors.grey,
  onColorChanged: (color) {
    context.dyna.update(color);
  },
),

Priority #

Dyna will use context.dyna.color to generate the ColorSchemes. If this value is null (default), Dyna will try to get a ColorScheme from the underlying platform (e.g. wallpaper based on Android). If the platform is not supported, Dyna will then use the given default color (to the Dyna widget) to generate the ColorSchemes. If none is provided, Dyna will use the package default color (kDynaDefaultColor).

1
likes
50
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A widget that provides reactive ColorSchemes based on given source/seed color.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

dynamic_color, flutter, material_color_utilities

More

Packages that depend on dyna