The flutter team recommends using the stable branch . That said, the beta branch should be fine.30 Tem 2018
Read moreHow many channels does Flutter have?
Basically, there are four channels available: stable, beta, dev and master.
Read moreHow do you write a platform-specific code in Flutter?
Writing custom platform-specific code
Read moreWhat is a channel in Flutter?
Overview. Overall the Platform Channel represents a way to connect native code with the Flutter app (Dart) . It can be used to implement any Flutter missing functionality using a platform-specific code (plugins) and call any APIs whether available in Java or Kotlin code on Android, or in Objective-C or Swift code on iOS …
Read moreHow do you call a method in Flutter?
To call a function of a parent, you can use the callback pattern . In this example, a function on the color selected is passed to the child. The child calls the function when a button is pressed: import ‘package:flutter/material.
Read more