Skip to content

Commit

Permalink
docs: Additional article content.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Feb 7, 2023
1 parent 336c7e8 commit 468267c
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 4 deletions.
12 changes: 11 additions & 1 deletion README.md
Expand Up @@ -77,7 +77,7 @@ In addition, this framework provides the following functions to support applicat
- `Form building`
- Support data input from users, mainly forms, from the UI level.
- `UI support`
- Provides functions to implement list widgets and simple modals that can update widgets with less impossibility when data is updated.
- It provides functions to implement list widgets and simple modals that can update widgets with less load when data is updated.
- `Firebase/Firestore support`
- Provides the ability to easily switch to Firebase features such as `Authentication`, `Cloud Firestore`, and `Cloud Storage`.

Expand Down Expand Up @@ -258,6 +258,16 @@ router.replace(TestPage.query());
router.pop();
```

## Initial Page Setup

You can set the page when the application is launched by passing the query you want to set for the initial page to the `initialQuery` defined in main.dart.

```bash
/// Initial page query.
// TODO: Define the initial page query of the application.
final initialQuery = TestPage.query();
```

To learn more about the other features listed below, please visit the package details page.

- How to specify AppRouter
Expand Down
12 changes: 11 additions & 1 deletion packages/masamune/README.md
Expand Up @@ -77,7 +77,7 @@ In addition, this framework provides the following functions to support applicat
- `Form building`
- Support data input from users, mainly forms, from the UI level.
- `UI support`
- Provides functions to implement list widgets and simple modals that can update widgets with less impossibility when data is updated.
- It provides functions to implement list widgets and simple modals that can update widgets with less load when data is updated.
- `Firebase/Firestore support`
- Provides the ability to easily switch to Firebase features such as `Authentication`, `Cloud Firestore`, and `Cloud Storage`.

Expand Down Expand Up @@ -258,6 +258,16 @@ router.replace(TestPage.query());
router.pop();
```

## Initial Page Setup

You can set the page when the application is launched by passing the query you want to set for the initial page to the `initialQuery` defined in main.dart.

```bash
/// Initial page query.
// TODO: Define the initial page query of the application.
final initialQuery = TestPage.query();
```

To learn more about the other features listed below, please visit the package details page.

- How to specify AppRouter
Expand Down
12 changes: 11 additions & 1 deletion packages/masamune_annotation/README.md
Expand Up @@ -77,7 +77,7 @@ In addition, this framework provides the following functions to support applicat
- `Form building`
- Support data input from users, mainly forms, from the UI level.
- `UI support`
- Provides functions to implement list widgets and simple modals that can update widgets with less impossibility when data is updated.
- It provides functions to implement list widgets and simple modals that can update widgets with less load when data is updated.
- `Firebase/Firestore support`
- Provides the ability to easily switch to Firebase features such as `Authentication`, `Cloud Firestore`, and `Cloud Storage`.

Expand Down Expand Up @@ -258,6 +258,16 @@ router.replace(TestPage.query());
router.pop();
```

## Initial Page Setup

You can set the page when the application is launched by passing the query you want to set for the initial page to the `initialQuery` defined in main.dart.

```bash
/// Initial page query.
// TODO: Define the initial page query of the application.
final initialQuery = TestPage.query();
```

To learn more about the other features listed below, please visit the package details page.

- How to specify AppRouter
Expand Down
12 changes: 11 additions & 1 deletion packages/masamune_builder/README.md
Expand Up @@ -77,7 +77,7 @@ In addition, this framework provides the following functions to support applicat
- `Form building`
- Support data input from users, mainly forms, from the UI level.
- `UI support`
- Provides functions to implement list widgets and simple modals that can update widgets with less impossibility when data is updated.
- It provides functions to implement list widgets and simple modals that can update widgets with less load when data is updated.
- `Firebase/Firestore support`
- Provides the ability to easily switch to Firebase features such as `Authentication`, `Cloud Firestore`, and `Cloud Storage`.

Expand Down Expand Up @@ -258,6 +258,16 @@ router.replace(TestPage.query());
router.pop();
```

## Initial Page Setup

You can set the page when the application is launched by passing the query you want to set for the initial page to the `initialQuery` defined in main.dart.

```bash
/// Initial page query.
// TODO: Define the initial page query of the application.
final initialQuery = TestPage.query();
```

To learn more about the other features listed below, please visit the package details page.

- How to specify AppRouter
Expand Down

0 comments on commit 468267c

Please sign in to comment.