codelessly_sdk 0.2.0 copy "codelessly_sdk: ^0.2.0" to clipboard
codelessly_sdk: ^0.2.0 copied to clipboard

Codelessly CloudUI™ - Supercharge your Flutter apps with dynamic UI and real-time updates. Build and publish UI without code!

0.2.0 #

  • New simplified variables system. Variables passed into the CodelesslyWidget can now be referenced by name in the Codelessly Editor.
CodelesslyWidget(
  data: {
    'title': 'My Title',
    'productData': { // JSON Data
      'nested': {
        'json': {
          'path': 'Hey there!',
        }
      }
    }
  }
)

// Now you can access the variable directly in the Codelessly Editor.
${title} - 'My Title'

// Or, using the `data` object.
${data.title} - 'My Title'
${data.productData.nested.json.path} - 'Hey there!'
  • New SVG image support!
  • New hosted website publishing support.
  • Add >=, <=, and == null operators.
  • Add data and variable support for dropdown component.
  • Add Material 3 Switch UI component.
  • Add Rounded Circular Progress Indicator component.
  • Improve InkWell behavior. Show Inkwell effect on top of other widgets.
  • Prototype implementation of custom widget embedding feature.

0.1.0 #

  • Update CodelesslyAPI v0.1.0.
  • Optimize SDK size by 90% by switching to SVG icons.
  • Add path support for Flutter Website publishing.
  • Consolidate initialize() function.
  • Fix Hive cache dispose not working on web.

0.0.8 #

  • Update CodelesslyAPI v0.0.8.
  • Text field and code-gen improvements.
  • Fix text field counter text not working properly.

0.0.7 #

  • Update CodelesslyAPI v0.0.7.
  • Add support for Tabs.
  • Add TextField support for variables.
  • Add FAB support for variables.

0.0.6 #

  • Update visibility rendering.

0.0.5 #

  • Update CodelesslyAPI v0.0.5.
  • Fix image rendering.
  • Fix layout loading with conditions.
  • Revamp example app.
  • Fix multi-variables not being registered.
  • Fix auto-scale rendering.
  • Provide BuildContext as a parameter for CodelesslyFunction.
  • Improve visibility rendering.

0.0.4 #

  • Update CodelesslyAPI v0.0.5.
  • Update example.

0.0.3 #

  • Update GoogleFonts v5.0.0
  • Update CodelesslyAPI v0.0.3.

0.0.2 #

  • Upgrade to Flutter 3.10 and Dart 3.
  • Add support for listview and pageview.
  • Add support for api call action.
  • Add AssetModel.
  • Disable error screen when not in preview mode.
  • Show blank screen while loading.
  • Update README.
  • Update documentation.

0.0.1 #

  • Initial Prerelease.