Hrishikesh Kadam
Hrishikesh Kadam

Reputation: 37342

How to see Flutter API website for a specific version?

Is there any way to see the Flutter API site for a specific version?

Ex: Someone added a example in Hero class in this PR
Hero class in version 2.0.3 - heroes.dart
Hero class in version 2.1.0-10.0.pre - heroes.dart
Diff Addition - diff

At this point in time 2.0.3 is stable so cannot see the example added to the Hero class.
So, is there any way to see the changes in a specific version on https://api.flutter.dev site?

Dart API can be browsed for a specific version.
Dart API for version 2.12.4 - https://api.dart.dev/stable/2.12.4/index.html
Dart API for version 2.12.0 - https://api.dart.dev/stable/2.12.0/index.html

Edit 1 -

Contents in the master branch of Flutter API can be viewed at https://master-api.flutter.dev

Upvotes: 5

Views: 625

Answers (1)

hacker1024
hacker1024

Reputation: 3668

The master branch documentation is always available at https://master-api.flutter.dev.

Here is the Hero widget page.

Upvotes: 1

Related Questions