Skip to content

Commit d33323d

Browse files
committed
v2.2.1 Release
- Set target platforms.
1 parent 5588f90 commit d33323d

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
## 2.2.1
2+
- Set target platforms.
3+
14
## 2.2.0
2-
- Restore Windows support! Codelessly CloudUI™ now works on all Flutter platforms.
5+
- Restored Windows support. Codelessly CloudUI™ now supports all Flutter platforms!
36

47
## 2.1.1
58
- Fix Firebase exception on web.

example/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class _MyAppState extends State<MyApp> {
3434
showPanel: true,
3535
wrapperBuilder: (context, child) {
3636
return MaterialApp(
37-
home: child,
37+
home: Container(color: Colors.white, child: child),
3838
);
3939
},
4040
stories: [

lib/src/transformers/node_transformers/passive_checkbox_transformer.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ class PassiveCheckboxWidget extends StatelessWidget {
9898

9999
@override
100100
Widget build(BuildContext context) {
101-
final scale = node.basicBoxLocal.width / (node.properties.compact ? Checkbox.width : kCheckboxDefaultSize);
101+
final double scale = node.basicBoxLocal.width /
102+
(node.properties.compact ? Checkbox.width : kCheckboxDefaultSize);
102103

103104
final bool? value = PropertyValueDelegate.getPropertyValue<bool>(
104105
node,

pubspec.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
name: codelessly_sdk
22
description: Codelessly CloudUI™ - Server-driven UI for Flutter. Supercharge your Flutter apps with dynamic UI and real-time updates. Build and publish UI without code!
3-
version: 2.2.0
3+
version: 2.2.1
44
homepage: https://codelessly.com/
55
repository: https://github.com/Codelessly/CodelesslySDK
66

77
environment:
88
sdk: ">=3.3.0 <4.0.0"
99
flutter: ">=3.10.0"
1010

11+
platforms:
12+
android:
13+
ios:
14+
linux:
15+
macos:
16+
web:
17+
windows:
18+
1119
dependencies:
1220
flutter:
1321
sdk: flutter

0 commit comments

Comments
 (0)