Skip to content

Commit f3a2845

Browse files
committed
chore: Release version 1.0.0 of stac_core
1 parent 27d2b23 commit f3a2845

File tree

5 files changed

+41
-60
lines changed

5 files changed

+41
-60
lines changed

examples/counter_example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ packages:
726726
path: "../../packages/stac"
727727
relative: true
728728
source: path
729-
version: "1.0.0-dev.7"
729+
version: "1.0.0"
730730
stac_core:
731731
dependency: "direct overridden"
732732
description:

examples/movie_app/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ packages:
446446
path: "../../packages/stac"
447447
relative: true
448448
source: path
449-
version: "1.0.0-dev.7"
449+
version: "1.0.0"
450450
stac_core:
451451
dependency: "direct main"
452452
description:

examples/stac_gallery/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ packages:
726726
path: "../../packages/stac"
727727
relative: true
728728
source: path
729-
version: "1.0.0-dev.7"
729+
version: "1.0.0"
730730
stac_core:
731731
dependency: "direct main"
732732
description:

packages/stac/CHANGELOG.md

Lines changed: 36 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,39 @@
1-
## 1.0.0-dev.7
2-
3-
- feat: Added support for Dart-to-Json conversion via Stac DSL
4-
- breaking: TextSpan now takes `text` as a pram instead of `data`
5-
- feat: Improved Stac border and styles
6-
- Minor bug fixes and improvements
7-
8-
## 1.0.0-dev.6
9-
10-
- BREAKING: Minimum Flutter SDK is now 3.35.0+
11-
- BREAKING: Switch — rename `activeColor``activeThumbColor` (align with Flutter API). Update your JSON accordingly
12-
- BREAKING: `ThemeData.bottomAppBarTheme` now expects `BottomAppBarThemeData` (aligned with Flutter 3.35). No JSON change for `StacBottomAppBarTheme`
13-
- docs: Updated Switch and Radio docs; added guidance for RadioGroup usage
14-
- chore: Static analysis cleanups for latest Flutter
15-
16-
## 1.0.0-dev.5
17-
18-
- feat: WASM compatibility for Web/WASM platform support
19-
- feat: Implemented conditional widget with expression evaluation for dynamic UI logic
20-
- feat: Added SVG file rendering capability to StacImage by @Potatomonsta
21-
- feat: Added TextStyle.copyWith() functionality via copyWithStyle property by @Abdalqader27
22-
- feat: Implemented border side customization in BoxDecoration by @MohamedAbd0
23-
- feat: Added multi_action_parser support for advanced interaction handling by @antonioacademy10
24-
- feat: Integrated SnackBarThemeData for consistent styling by @Potatomonsta
25-
- feat: Implemented BackdropFilter widget by @manav-m
26-
- feat: Introduced color transparency using @ notation (e.g. "primary@50")
27-
- feat: Added support for Visibility widget by @Abdalqader27
28-
29-
## 1.0.0-dev.4
30-
31-
- chore: update pub dependencies
32-
33-
## 1.0.0-dev.3
34-
35-
- feat: Replace networkImage with CachedNetwork Image
36-
- feat: add ClipRRect widget support
37-
- fix: rename ItemTemplate → itemTemplate for consistency by @ayatsuno
38-
- feat: Add GestureDetector widget support with tap, drag and press handlers
39-
- feat: Add Material 3 fixed color and new surface variants to color scheme
40-
- feat: add ClipOval widget support by @vijaykarthiktk
41-
- feat: add support for inkwell widget by @AbhijithKonnayil
42-
- feat: add variable support with setValue widget and action
43-
- feat: add support to StacDouble class by @AbhijithKonnayil
44-
45-
## 1.0.0-dev.2
46-
47-
- feat: update stac theme with new ThemeData classes
48-
- fix: Make background & onBackground as nullable in ColorScheme by @oyewalekehinde
49-
- feat: Add support for the DropdownMenu widget by @Odinachi
50-
51-
## 1.0.0-dev.1
52-
53-
- feat: Add SliverAppBar & CustomScrollView parser by @nikb7
54-
- chore: update pub dependencies
55-
- feat: Add StacDynamicView parser for fetching and rendering API data
1+
## 1.0.0
2+
3+
### Breaking changes
4+
5+
- Minimum Flutter SDK is now 3.35.0+
6+
- Switch: rename `activeColor``activeThumbColor` (align with Flutter API)
7+
- `ThemeData.bottomAppBarTheme` now expects `BottomAppBarThemeData` (aligned with Flutter 3.35)
8+
- `TextSpan` now takes `text` instead of `data`
9+
10+
### Features
11+
12+
- Introduced `StacError` and `StacErrorWidget` for enhanced error handling (#364)
13+
- Added support for Dart-to-JSON conversion via Stac DSL
14+
- WASM compatibility for Web/WASM platform support
15+
- Conditional widget with expression evaluation for dynamic UI logic
16+
- SVG rendering capability in `StacImage`
17+
- `TextStyle.copyWith()` via `copyWithStyle` property
18+
- Border side customization in `BoxDecoration`
19+
- `multi_action_parser` for advanced interaction handling
20+
- Integrated `SnackBarThemeData` for consistent styling
21+
- `BackdropFilter` widget support
22+
- Color transparency using `@` notation (e.g. "primary@50")
23+
- `Visibility` widget support
24+
- Replaced `Image.network` usage with `CachedNetworkImage`
25+
- `ClipRRect` widget support
26+
- `GestureDetector` widget with tap, drag and press handlers
27+
- Material 3 fixed colors and new surface variants
28+
- `ClipOval` widget support
29+
- `InkWell` widget support
30+
- Variable support with `setValue` widget and action
31+
- `StacDouble` type support
32+
- Updated Stac theme with new `ThemeData` classes
33+
- `DropdownMenu` widget support
34+
- `SliverAppBar` and `CustomScrollView` parsers
35+
- `StacDynamicView` parser for fetching and rendering API data
36+
- Improved Stac borders and styles
5637

5738
## 0.10.0
5839

packages/stac/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stac
22
description: Stac is a Server-Driven UI (SDUI) framework for Flutter. Stac allows you to build beautiful cross-platform applications with JSON in real time.
3-
version: 1.0.0-dev.7
3+
version: 1.0.0
44
repository: https://github.com/StacDev/stac
55
homepage: https://stac.dev/
66

@@ -25,7 +25,7 @@ dependencies:
2525
cached_network_image: ^3.4.1
2626
flutter_svg: ^2.1.0
2727
stac_logger: ^1.1.0
28-
stac_core: ^0.2.0
28+
stac_core: ^1.0.0
2929

3030
dev_dependencies:
3131
flutter_test:

0 commit comments

Comments
 (0)