flutter_lab 0.1.3 copy "flutter_lab: ^0.1.3" to clipboard
flutter_lab: ^0.1.3 copied to clipboard

Flutter package for FlutterLab, a UI design tool. Quickly change the parameters of widgets (color, size, alignment, padding, position, opacity, etc.)

Flutter package for FlutterLab, a UI design tool. Quickly change the parameters of widgets (color, size, alignment, padding, position, opacity, etc.)

Watch on Youtube

Install FlutterLab #

Usage #


import 'package:flutter_lab/flutter_lab.dart';

Wrap MyApp() with FlutterLab widget, to connect FlutterLab App


void main() {

  WidgetsFlutterBinding.ensureInitialized();

  // ...

  runApp(
    const FlutterLab(
      child: MyApp(),
    ),
  );
}

Change Container widget to LabContainer (add Lab prefix) to manage parameters from FlutterLab App

LabContainer(
  // Container parameters
  width:300,
  height:200,
);

LabOpacity(
  opacity: 0.5,
  chid: Text("new"),
);

LabRow(
  children: [
    LabPadding(
      padding: EdgeInsets.all(8),
      child: Text("design"),
    ),
    Stack(
      children:[
        LabPositioned(
          child:Icon(Icons.add),
        ),
      ],
    ),
  ],
);

These widgets can be used

  • Container -> LabContainer
  • Padding -> LabPadding
  • Row -> LabRow
  • Column -> LabColumn
  • Stack -> LabStack
  • Align -> LabAlign
  • Positioned -> LabPositioned
  • SizedBox -> LabSizedBox
  • Opacity -> LabOpacity
  • Icon -> LabIcon
  • Text -> LabText

Detail #

In order to control specific widgets, the "name" parameter can be used. "name" value and FlutterLab App widget name must be the same.

LabContainer(
  name: "background", // Rename the Container widget to "background" in FlutterLab App
  width: 300,
  height: 200,
  child: Row(
    children:[
      LabContainer(
        name: "box", // Rename the Container widget to "box" in FlutterLab App
        color: Colors.blue,
      ),
      LabContainer(
        name: "box",
        color: Colors.blue,
      ),
    ],
  ),
);

LabOpacity(
  name: "Opacity 2", 
  child: ...
);

LabPadding(
  name: "box padding",
  padding: EdgeInsets.all(8),
  child: ...
);

Connection #

If needed, these parameters can be added to FlutterLab.

Hot restart is required after changing the parameters.

  runApp(
    const FlutterLab(
      url: "192.168.1.200", //default "http://localhost"
      port: 3000, //default 3000
      child: MyApp(),
    ),
  );


This package uses socket_io_client. If required, the connection solutions here can be used.

https://pub.dev/packages/socket_io_client

6
likes
130
pub points
64%
popularity

Publisher

verified publisherflutterlab.dev

Flutter package for FlutterLab, a UI design tool. Quickly change the parameters of widgets (color, size, alignment, padding, position, opacity, etc.)

Repository (GitHub)
View/report issues

Topics

#ui #widget #tool

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

cupertino_icons, flutter, get_it, google_fonts, socket_io_client

More

Packages that depend on flutter_lab