Re: [go-nuts] Flutter and golang

2018-04-09 Thread Linker
You can try to use gopherjs to bind a js/webui UI lib for go. On Fri, Apr 6, 2018 at 12:35 PM, Tong Sun wrote: > Saw a recent discussion on Flutter and golang, which seems to me to be > going the wrong way, because I didn't see the magic word "FIDL >

[go-nuts] Flutter and golang

2018-04-05 Thread Tong Sun
Saw a recent discussion on Flutter and golang, which seems to me to be going the wrong way, because I didn't see the magic word "FIDL " being mentioned. So I'd like to share my finding about that, First of all, about the Flutter: On February 27, 2018,

[go-nuts] Flutter and golang

2018-03-10 Thread alex . ewetumo
Am very much looking towards a straighter means to work with dart.The plugin system if possible would be a great start. I too would love any help that can be provided. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this

Re: [go-nuts] Flutter and golang

2018-03-10 Thread Justin Israel
On Sun, Mar 11, 2018, 12:31 PM Nathan Fisher wrote: > Oh that’s awesome! I didn’t realise they were supporting desktop now. It > sounded like it was abandoned in a push to focus on the mobile experience. > On Sat, Mar 10, 2018 at 4:36 PM, Ged Wed wrote:

Re: [go-nuts] Flutter and golang

2018-03-10 Thread Nathan Fisher
Oh that’s awesome! I didn’t realise they were supporting desktop now. It sounded like it was abandoned in a push to focus on the mobile experience. On Sat, Mar 10, 2018 at 4:36 PM, Ged Wed wrote: > I used QT for 6 months and Flutter is way ahead. > QT has a huge licensing

Re: [go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
I used QT for 6 months and Flutter is way ahead. QT has a huge licensing issue. You can only use QT and not pay a yearly fee of 3 k if you provide the ability for end users to recompile your app against QT. Also it's got a lot of rough edges once you get into the 80/20 situation on real world

Re: [go-nuts] Flutter and golang

2018-03-10 Thread Justin Israel
On Sun, Mar 11, 2018, 9:28 AM Ged Wed wrote: > I am starting to develop an app using flutter and golang. > > Flutter is the dumb GUI and everything else is written in golang. > > It is reasonably easy to compile your golang code using gomobile and then > bind to flutter using

[go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
https://github.com/flutter/flutter/issues/14231 It looks like it's doable and there is a bug to fix so that flutter can bind directly to flutter without having to go via a Java or Objective-c layer. -- You received this message because you are subscribed to the Google Groups "golang-nuts"

[go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
http://www.1500wordmtu.com/2018/bradfitz-if-we-could-make-flutter-work-with-gomobile-id Just adding here for reference. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an

[go-nuts] Flutter and golang

2018-03-10 Thread Ged Wed
I am starting to develop an app using flutter and golang. Flutter is the dumb GUI and everything else is written in golang. It is reasonably easy to compile your golang code using gomobile and then bind to flutter using the Method Channel API that flutter provides. Is anyone interested in this