⌘K

Nativeblocks Foundation

This document provides an overview of the Nativeblocks Foundation blocks, actions and utilities. These blocks and actions are fundamental components that allow developers to build rich and customizable user interfaces in SwiftUI. Additionally, utility functions and extensions are provided to enhance development workflows.

All the blocks and actions described below are basics provided in Nativeblocks Studio, making them readily available for use in projects.


Getting Started

To integrate NativeblocksFoundation into your project, add it via Swift Package Manager (SPM):

  1. Add the library to your Package.swift file:
dependencies: [
    .package(
        url: "https://github.com/nativeblocks/nativeblocks-foundation-ios.git",
        .upToNextMajor(from: "1.1.0")
    ),
],
  1. Import the library in your Swift file:
import NativeblocksFoundation
  1. Provide nativeblocks foundation blocks :
NativeblocksFoundationProvider.provide()
  1. Start using the blocks provided by NativeblocksFoundation to create dynamic, server-driven UIs.

Sample App Example

Here is an example of a basic app using NativeblocksFoundation:

import Nativeblocks
import NativeblocksFoundation

NativeblocksManager.initialize()
// ADD This line of codes
NativeblocksFoundationProvider.provide()

Provided Actions

The following actions are provided in NativeblocksFoundation:

  • NativeChangeVariable
  • NativeChangeBlockProperty

Provided Blocks

The following blocks are provided in NativeblocksFoundation:

  • NativeZStack
  • NativeHStack
  • NativeVStack
  • NativeLazyHStack
  • NativeLazyVStack
  • NativeSpacer
  • NativeText
  • NativeTextField
  • NativeButton
  • NativeImage
  • NativeScrollView

Provided Types

The following types are provided in NativeblocksFoundation:

  • Color
  • Font.Design
  • Font.Weight
  • HorizontalAlignment
  • LayoutDirection
  • Axis.Set
  • TextAlignment
  • VerticalAlignment