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

Commit

Permalink
Implement redirect (#1073)
Browse files Browse the repository at this point in the history
## Description

- Add redirect
- Add link to hosted web version
(https://gallery-flutter-dev.firebaseapp.com) to README

## Issues
#1072

---------

Co-authored-by: Parker Lougheed <parlough@gmail.com>
  • Loading branch information
guidezpl and parlough committed Jan 12, 2024
1 parent 1dea4c4 commit 1f1c26e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
25 changes: 10 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,23 @@
**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.web.app).

We recommend Flutter developers check out the following resources:

* **Wonderous**:
(
[web demo](https://wonderous.app/web/),
* **Wonderous**
([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>
* **Flutter Samples**
([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 1f1c26e

Please sign in to comment.