Norbert515 / flutter_ide

A visual editor for Flutter widgets

Home Page:https://widgetmaker.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Do you have a version running on mac? I am expecting that

ryan730 opened this issue · comments

Do you have a version running on mac? I am expecting that

I really want it

Can he provide a step guide on how to build this project?

The IDE folder contains a plain old Flutter project. You can build that for any target you want (Android/iOS/ or Desktop - Mac included using the flutter desktop embedding project)

@Norbert515 The IDE folder is not building anymore.
Since there has not been any update for 4-5 months, are you still working on this?
Even if you are not, can you try once and fix the issues so we can use the work you have done?

@vinayagg what exactly is the problem?

Due to various reasons (made some wrong assumptions, code therefore got messy etc) I decided to rewrite the IDE and it is now the widget-maker.
Eventually I'd like to incorporate all the ideas I had for this IDE into that!

Not sure what vinayagg was experiencing exactly, but when I copied the ide contents into flutter's embedded-desktop example project. I was getting this error for the ColorProperty.

The name 'ColorProperty' is defined in the libraries 'package:flutter/src/painting/colors.dart' and 'package:flutter_visual_builder/widgets/properties/property.dart'.
Try using 'as prefix' for one of the import directives, or hiding the name from all but one of the imports.

I fixed it by changing
import 'package:flutter_visual_builder/widgets/properties/property.dart';
to
import 'package:flutter_visual_builder/widgets/properties/property.dart' as VProperty;
and modified instantiations for example to
VProperty.ColorProperty (and also the other Properties in this class)

Quick update, version 2 will support all operating systems.