Earlier quoted context omitted.
Highly recommend the appbrewery flutter bootcamp (it’s a video course). It’s $10 and will get you up and running quickly. I have no affiliation with them other than as a happy customer.
I took it last year, the woman has a mesmerizing voice! (and the course is great too :D) If you're an experienced software dev it's a bit basic. I like Flutter a lot, but I'm not a fan of Dart. It's a false friend, it makes you believe it's simple and mostly a copy of your favorite language, but once you start to dig a little deeper it feels like something bolted on, hacky, not designed. I come from the .net world wh…
Launch HN: FlutterFlow (YC W21) – Build Apps Visually
41–50 of 64 posts
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#42This looks super exciting. As an Android developer who has not yet built a Flutter app, I'm intrigued if this can be a stepping stone to ramping up on flutter. I looked over the video. It is nice to see a compressed video, but it was still hard to understand what to pay attention to inside a 20 minute video. It would be great if you added callouts to the important moments so people could easily jump to the important…
Think of it this way, where Android has every view as stateful or stateless, instead in Flutter it's broken up into Stateful widgets and stateless widgets.
The only increase in time is that in the data binding side as it's not prettied up with libraries that automate that side.
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#43Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#44Earlier quoted context omitted.
I've taken a look at the generated code very quickly. You're using a lot of paddings in columns for example where I would use a SizedBox with no child in between the elements. Or even better, expandables. It makes for less nested elements, plus padding used like that feels like a translation of css to flutter. I rarely need padding but maybe its just me. Also you may have a good reason for doing so. Also I think the…
Thanks for the suggestions! Yes, there's definitely room for improvement with the generated code ... I think the padding -> SizedBox conversion at least in some cases (only when main-axis padding is added) can be automated. We can experiment with code improvement features such as that and see how it works. Expanded + Percentages for widths are possible already
Im only saying this to inspire you - not sure what the solution should ultimately be.
:D
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#45I've been trying to use this product for a personal app I'm making. its really good until its not. There needs to be better controls for mock data in listviews, I don't want to hook up to API in the tool, I have my own data, but I need the listview to aleast pretend theres data there. Also the lack of positioned widgets in conjunction with stack views makes it hard to transfer the flutterflow experience to the actual…
What happens if I want anchor a view to the bottom of the screen in a stack? You can use Align for that.
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#46I've been trying to use this product for a personal app I'm making. its really good until its not. There needs to be better controls for mock data in listviews, I don't want to hook up to API in the tool, I have my own data, but I need the listview to aleast pretend theres data there. Also the lack of positioned widgets in conjunction with stack views makes it hard to transfer the flutterflow experience to the actual…
Hey! Thanks so much for the feedback. You're right that there's currently no way to simulate the mock data view without actually adding a Firestore query or API call. That's a useful suggestion. For the positioned issue, you can set the alignment of items in a Stack (same as the Align widget in Flutter). In our experience this tends to cover the vast majority of cases, however you're right that we don't currently sup…
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#47Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#48Absolutely fantastic. I’m a big Flutter fan and I figured it was just a matter of time before someone conjured this up. Well done lads.
There have been charged arguments on HN over the past few months over it.
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#49congrats Alex and Abel! was wowed when I first checked you guys out coming out of YC, and have been absolutely nothing but impressed by your product momentum and marketing capability throughout 2021. Really excited for you and going to try building along to see whats new!
Re: Launch HN: FlutterFlow (YC W21) – Build Apps Visually
#50This looks super exciting. As an Android developer who has not yet built a Flutter app, I'm intrigued if this can be a stepping stone to ramping up on flutter. I looked over the video. It is nice to see a compressed video, but it was still hard to understand what to pay attention to inside a 20 minute video. It would be great if you added callouts to the important moments so people could easily jump to the important…