Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.0.5 - 2026-08-31

> Flutter decoupling and dark theme support is now available!

### Added

- Flutter decoupling support for the `flutter_skin` package, the package now uses the `material_ui` package to provide a decoupled Material Design implementation.
- The package now supports dark theme tokens and can automatically switch between light and dark themes based on the system settings.

## 0.0.4 - 2026-08-16

> Caching and offline support is now available!
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Sign up at [app.fskin.dev](https://app.fskin.dev), create a project, and copy yo

```yaml
dependencies:
flutter_skin: ^0.0.4
flutter_skin: ^0.0.5
```

```bash
Expand Down Expand Up @@ -123,6 +123,10 @@ These map directly to Flutter's `ColorScheme` — `FlutterSkin.toThemeData()` co

**Upcoming versions: more tokens and more customization**

### Dark Theme Support

The package now supports dark theme tokens and can automatically switch between light and dark themes based on the system settings. You can define a dark theme for your skin in the FSkin dashboard and publish it. The package will automatically switch between light and dark themes based on the system settings.

### Fonts and Typography

The current skin model supports dynamic fonts and typography styles. You can setup a font or google font for your skin and the package will automatically update the font and typography styles based on SSE updates.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_skin
description: A runtime skin engine for Flutter projects, allowing dynamic theme
changes without the need for app restarts.
version: 0.0.4
version: 0.0.5
homepage: https://github.com/koukibadr/flutter_skin
screenshots:
- description: A runtime skin engine for Flutter projects, allowing dynamic theme
Expand Down
Loading