Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/docs/project_configuration/ads.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,22 +163,28 @@ Remove the noted snippets from the files below:
adsConsentClient: adsConsentClient,
```
- `flutter_news_example/lib/onboarding/bloc/onboarding_bloc.dart`

```dart
required AdsConsentClient adsConsentClient,
```

```dart
_adsConsentClient = adsConsentClient,
```

```dart
on<EnableAdTrackingRequested>(
_onEnableAdTrackingRequested,
transformer: droppable(),
);
```

```dart
final AdsConsentClient _adsConsentClient;
```

- the `_onEnableAdTrackingRequested()` function

- `flutter_news_example/lib/onboarding/view/onboarding_page.dart`
```dart
adsConsentClient: context.read<AdsConsentClient>(),
Expand Down
2 changes: 0 additions & 2 deletions docs/docs/project_configuration/api_deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ You can deploy your Dart Frog API to [Cloud Run](https://cloud.google.com/run/do
If you've created a development and production flavor for your application, you'll want two corresponding Google Cloud Projects where the API must be deployed:

- **Development:**

- project_id: example-name-dev

- service_name : example-name-api-dev

- **Production:**

- project_id: example-name-prod

- service_name : example-name-api-prod
Expand Down
Loading