Skip to content

Commit 5987c5d

Browse files
committed
v0.7.1 Release
- Improve Alignment and Positioning. - Improve SDK preload performance. New Download Queue system speeds up layout downloads. - Fix AppBar not navigating back when leading is a custom icon. - Scrolling Improvements. - Fix scroll physics and always scrollable option. - Fix scrolling being cut off. - Fix stack crash when scrollable and no aligned children. - Fix scrollable size fit rules to allow fixed and flexible size fits. - Implement safe area for canvases - Substitute WebView input/src with variable values.
1 parent 0cece80 commit 5987c5d

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.7.1
2+
- Improve Alignment and Positioning.
3+
- Improve SDK preload performance. New Download Queue system speeds up layout downloads.
4+
- Fix AppBar not navigating back when leading is a custom icon.
5+
- Scrolling Improvements.
6+
- Fix scroll physics and always scrollable option.
7+
- Fix scrolling being cut off.
8+
- Fix stack crash when scrollable and no aligned children.
9+
- Fix scrollable size fit rules to allow fixed and flexible size fits.
10+
- Implement safe area for canvases
11+
- Substitute WebView input/src with variable values.
12+
113
## 0.7.0
214
- New Dialogs feature! 100% customizable dialogs with customizable close button, background, and padding.
315
- New show dialog action.

example/lib/main.dart

+9-21
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,19 @@ class _MyAppState extends State<MyApp> {
3434
showPanel: true,
3535
wrapperBuilder: (context, child) {
3636
return MaterialApp(
37-
// home: child,
38-
home: Column(
39-
children: [
40-
ElevatedButton.icon(
41-
onPressed: () {
42-
Codelessly.instance.reset(clearCache: true);
43-
},
44-
icon: const Icon(Icons.refresh),
45-
label: const Text('Reset'),
46-
),
47-
if (child != null) Expanded(child: child),
48-
],
49-
),
37+
home: child,
5038
);
5139
},
5240
stories: [
5341
Story(
54-
name: 'Hello World',
55-
builder: (context) {
56-
return CodelesslyWidget(
57-
layoutID: "0R0yRfzR23SQfDGrbg3h",
58-
loadingBuilder: (context) {
59-
return const CupertinoActivityIndicator();
60-
},
61-
);
42+
name: 'Hello World',
43+
builder: (context) {
44+
return CodelesslyWidget(
45+
layoutID: "0R0yRfzR23SQfDGrbg3h",
46+
loadingBuilder: (context) {
47+
return const CupertinoActivityIndicator();
48+
},
49+
);
6250
},
6351
),
6452
Story(

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.7.0
3+
version: 0.7.1
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.7.0
22+
codelessly_api: 0.7.1
2323
codelessly_json_annotation: 4.8.1
2424
equatable: ^2.0.5
2525
google_fonts: ^6.1.0

0 commit comments

Comments
 (0)