Skip to content

Commit e84e891

Browse files
committed
v0.5.2 Release
- New properties panel for Accordion widget. - Optimize SDK loading performance. Load from Firestore Storage to reduce loading time by up to 90%. - Fix layout initial load not reading from cache. - Fix Inkwell not rendering without a Material parent.
1 parent f78119c commit e84e891

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.5.2
2+
- New properties panel for Accordion widget.
3+
- Optimize SDK loading performance. Load from Firestore Storage to reduce loading time by up to 90%.
4+
- Fix layout initial load not reading from cache.
5+
- Fix Inkwell not rendering without a Material parent.
6+
17
## 0.5.1
28
- New shrink-wrap support for Buttons. Buttons can now resize based on the content inside them.
39
- New shrink-wrapping support for Slider, Switch, and Radio Button components.

example/lib/main.dart

+12
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,29 @@ class _MyAppState extends State<MyApp> {
6868
setState(() {});
6969
},
7070
},
71+
loadingBuilder: (context) {
72+
return const CupertinoActivityIndicator();
73+
},
7174
);
7275
}),
7376
Story(
7477
name: 'Pricing UI',
7578
builder: (context) {
7679
return CodelesslyWidget(
7780
layoutID: "0R0yedXWbqOrI_W7PBlo",
81+
loadingBuilder: (context) {
82+
return const CupertinoActivityIndicator();
83+
},
7884
);
7985
}),
8086
Story(
8187
name: 'Pricing Card',
8288
builder: (context) {
8389
return CodelesslyWidget(
8490
layoutID: '0R1xmqF5lXMr6LpLA9h5',
91+
loadingBuilder: (context) {
92+
return const CupertinoActivityIndicator();
93+
},
8594
);
8695
},
8796
),
@@ -97,6 +106,9 @@ class _MyAppState extends State<MyApp> {
97106
'description':
98107
'Mangos are versatile fruits that can be enjoyed in many ways. You can eat them fresh as a snack or dessert, or add them to salads, smoothies, salsas, curries, cakes, pies, and more. You can also make mango juice, jam, chutney, or pickle.\n\nMangos are a great way to add some tropical flavor and nutrition to your diet.'
99108
},
109+
loadingBuilder: (context) {
110+
return const CupertinoActivityIndicator();
111+
},
100112
);
101113
},
102114
),

pubspec.yaml

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

@@ -19,7 +19,7 @@ platforms:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
codelessly_api: 0.5.1
22+
codelessly_api: 0.5.2
2323
equatable: ^2.0.5
2424
google_fonts: ^6.1.0
2525
json_annotation: ^4.8.1

0 commit comments

Comments
 (0)