Built-in mobile application using google dart language

How to develop your own mobile applications for Android using the dart language? Is it possible?

+6
source share
6 answers

Yes it is possible. A Dart application can be compiled into a regular JS / HTML application and packaged as such.

For an example in the real world, see Veterninary Anesthesia on the Play Store. This application was written in Dart, and the installation phone version was created using PhoneGap. The developer's blog details how this was done .

Native Dart applications may appear in the end. There are reports about compiling Dart VM on Android. The Dart team is currently focusing on the web client.

+8
source

Necronomicon :)

I know this is an old post, but for those who find it ... Now there is the opportunity to create native applications for Android and iOS using Flutter. Official Flutter website ~> https://flutter.dev/

Update [July 19]: now you can develop applications / applications for all platforms (including the web) with a single code base using flutter.

Flutter - a new project that helps developers create high-performance and high-quality mobile applications for iOS and Android from a single code base

At the moment it is at an early stage, but it looks very promising.

+5
source

Tools will appear such as PhoneGap , where you can write Dart, compile JS, and then use it to convert it all to a native application. The question is whether it really costs - I never tried, but I could imagine that with Dart you would need to use JS-Interop widely, if it works at all at all - the tool might not even use Dart-optimized JS. In any case, if you really want to do this, it might be worth a try.

+3
source

I do not think this is possible: as you can see in this link , "the current focus for Dart is web applications." Or maybe it's a little complicated, see also this thread for more information.

+2
source

The Dart team is working on its own dev toolkit from runtime to sdk UI for dart lang on mobile devices. Check it out, https://www.dartlang.org/mobile/

+2
source

Source: https://habr.com/ru/post/955473/


All Articles