SteAp
SteAp

Reputation: 11999

Am I using Flutter Preview 1

According to Google, Flutter Preview release 1 is available:

Preview Release 1 post on medium

I startete a project using BETA 0.5.1.

If I upgrade flutter from within Android Studio, it stays at release 0.5.1:

[✓] Flutter (Channel beta, v0.5.1, on Mac OS X 10.13.6 17G65, locale de-DE)

Upvotes: 0

Views: 57

Answers (2)

creativecreatorormaybenot
creativecreatorormaybenot

Reputation: 126894

To get the latest version in your channel, you can always run flutter upgrade.
If you want to switch to a more recent (and more unstable) channel, you can run flutter channel dev or flutter channel master.

Running flutter channel will show you all available channels:

  • beta

  • dev

  • master

Upvotes: 2

Rémi Rousselet
Rémi Rousselet

Reputation: 277527

If you're looking for a 1.0.0-pre release, then no. There are none.

The current flutter version out of 25 august is 0.7.1-pre.26 on master channel

You can run flutter upgrade to move to higher versions. You can also use flutter channel master to switch on master branch

Upvotes: 1

Related Questions