Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Implement redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
guidezpl committed Jan 11, 2024
1 parent cd360ee commit 01292dd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
20 changes: 7 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,22 @@
**NOTE**: The Flutter Gallery is now deprecated, and no longer being active maintained.

Flutter Gallery was a resource to help developers evaluate and use Flutter.
It is now being used primarily for testing.
It is now being used primarily for testing. For posterity, the web version remains [hosted here](https://gallery-flutter-dev.firebaseapp.com).

We recommend Flutter developers check out the following resources:

* **Wonderous**:
(
[web demo](https://wonderous.app/web/),
([web demo](https://wonderous.app/web/),
[App Store](https://apps.apple.com/us/app/wonderous/id1612491897),
[Google Play](https://play.google.com/store/apps/details?id=com.gskinner.flutter.wonders),
[source code](https://github.com/gskinnerTeam/flutter-wonderous-app)
):<br>
[source code](https://github.com/gskinnerTeam/flutter-wonderous-app)):<br>
A Flutter app that showcases Flutter's support for elegant design and rich animations.

* **Material 3 Gallery**
(
[web demo](https://flutter.github.io/samples/web/material_3_demo/),
[source code](https://github.com/flutter/samples/tree/main/material_3_demo)
):<br>
* **Material 3 Demo**
([web demo](https://flutter.github.io/samples/web/material_3_demo/),
[source code](https://github.com/flutter/samples/tree/main/material_3_demo)):<br>
A Flutter app that showcases Material 3 features in the Flutter Material library.

* **Flutter Samples**:
(
[source code](https://github.com/flutter/samples)
):<br>
([samples](https://flutter.github.io/samples), [source code](https://github.com/flutter/samples)):<br>
A collection of open source samples that illustrate best practices for Flutter.
9 changes: 8 additions & 1 deletion firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,18 @@
{
"target": "prod",
"public": "build/web",
"redirects": [
{
"source": "/",
"destination": "https://docs.flutter.dev/gallery",
"type": 301
}
],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
]
}
}

0 comments on commit 01292dd

Please sign in to comment.