Skip to content

It's OK to love Flutter and hate hand-coding design elements. Parabeac-Core converts design files into Flutter code.

License

Notifications You must be signed in to change notification settings

cuulee/Parabeac-Core

 
 

Parabeac-Core

Parabeac Logo

Parabeac-Core is an open-source repository that converts design files into Flutter code.

Parabeac - Open-source design to Flutter converter | Product Hunt Embed

google.com Discord Chat https://twitter.com/parabeac?lang=en Parabeac Contributor Covenant

How it works

Parabeac-Core is essentially broken up into 3 pieces which you can see in the list or animation below. While most of the magic is in the interpretation engine, you can view more animations & information here.

  1. Convert design file into Parabeac design protocol
  2. Interpretation Engine

Made up of the Visual, Layout, & Alignment generation services.

  1. Generate Flutter code

Parabeac High Level Animation

These are mostly built by a one to one relationship from the Parabeac Design Language into Parabeac Intermediate Nodes. For example, a rectangle in the design language will simply convert to an InheritedContainer.

Parabeac Visual Generation Service Animation

This service is a bit more interesting, as we break down each group of nodes to be laid out by the layout service. The service takes the first 2 nodes compares them & generates a layout, we grab the next node, compare it to the layout & then the leaves if needed to and continuously traverse the rest of the layer into the laid out tree that we construct.

Parabeac Layout Generation Service Animation

In Flutter, there are only a couple ways to achieve alignment. We recognized the following as the most common:

  • Flex-based layouts
  • Padding/margin
  • Positioning (Stacks)
  • Alignment (Container/Single Child/Visual Node)

Depending on the type of layout to add alignment to we have various services to take the nodes in and apply the alignment information needed.

Parabeac Alignment Generation Service Animation

Get Started

Parabeac currently supports conversions from Sketch but is designed to support more platforms in the future.

Dependencies

  • Dart
  • Flutter
  • Docker (We're working on removing this)

To test out a Sketch file feel free to download this Sketch file!

Running the conversion

Follow these steps in order to run Parabeac Core on your local environment:

  1. Clone PBCore repo in order to get the code on your machine
  2. Make sure you have docker running
  3. Within your terminal navigate to the sketch-to-svg folder within the Parabeac Core root directory. From here run docker build -t sketch .
  4. Within the same sketch-to-svg directory run docker run -p 5555:8081 -d sketch
  5. If you have any plugins make sure to put the plugins in the plugin folder
  6. In your terminal move to the root PBCore directory and run:
 $dart parabeac.dart -p <Absolute Path To Design File> -n <ProjectName> 

⚠️ Note: Steps 3 and 4 create a docker container in the background, we know this is not ideal and are working to remove this currently. To remove the docker instance run docker ps to identify the container Id and then docker kill <containerId> to remove it. Please see the Docker docs for more details.

Running the exported code

Requirement(s)

  • Download Flutter
  • Traverse to main.dart
  • Call the screen you want to view
  • Execute flutter run

How to contribute

Welcome! The best way to contribute to Parabeac is through pull requests, filing issues on Github, writing documentation & helping others in our Discord community. We are an early project, but like many other projects, helping with bugs that others have filed on Stack Overflow is extremely helpful. We recommend filing bugs & feature requests on the Github issue tracker. For more details make sure to check out our wiki.

How to create & run Parabeac eggs

Parabeac eggs are essentially plugins that change the way a set of design elements are interpreted. A very simple example of this are 2 eggs that we created called NavBar & TabBar. Eggs are loaded into the project before the runtime of Parabeac-Core because unfortunately dart doesn't support dynamic module loading.

To add a Parabeac egg, download the egg and add it to the parabeac-core/plugins folder. When you run Parabeac-Core it will automatically grab & import the egg into the project.

Upcoming & Known Issues

  • Plugin Duplication in the Plugin Service
  • Remove Docker Dependency
  • Support for Figma
  • Egg Marketplace

About

It's OK to love Flutter and hate hand-coding design elements. Parabeac-Core converts design files into Flutter code.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 69.0%
  • JavaScript 25.1%
  • TypeScript 3.8%
  • Shell 1.9%
  • Dockerfile 0.2%