Skip to content
Open
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.8.3
- Support for Flutter 3.41. `Container` gained an `isAntiAlias` field, which
`$Container` did not implement — without it the package does not compile.
- Raised the minimum Flutter version to 3.41.0, since `Container.isAntiAlias`
does not exist before it.
- Raised the minimum dart_eval version to 0.8.5.

## 0.8.2
- Support for Flutter 3.38
- Added `Color` methods, `SafeArea` widget, and `showBottomSheet` function.
Expand Down
3 changes: 3 additions & 0 deletions lib/src/widgets/container.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ class $Container implements Container, $Instance {
@override
Clip get clipBehavior => $value.clipBehavior;

@override
bool get isAntiAlias => $value.isAntiAlias;

@override
Color? get color => $value.color;

Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_eval
description: Flutter bridge library for dart_eval, enabling creation of fully dynamic Flutter apps and widgets that can be loaded from a file or the Internet at runtime.
version: 0.8.2
version: 0.8.3
homepage: https://github.com/ethanblake4/flutter_eval

platforms:
Expand All @@ -20,12 +20,12 @@ topics:

environment:
sdk: '>=3.4.0 <4.0.0'
flutter: ">=3.19.0 <4.0.0"
flutter: ">=3.41.0 <4.0.0"

dependencies:
flutter:
sdk: flutter
dart_eval: ^0.8.1
dart_eval: ^0.8.5
path_provider: ^2.1.0
http: ^1.1.0

Expand Down
Loading