Skip to content

Commit

Permalink
Merge pull request #18604 from unoplatform/dev/doti/storecontext-docs
Browse files Browse the repository at this point in the history
docs: Add in Store Context page
  • Loading branch information
morning4coffe-dev authored Nov 9, 2024
2 parents 92f2603 + 9aa0d33 commit f9e59ad
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@
"jlaban",
"sasakrsmanovic",
"maccatalyst",
"settingscard"
"settingscard",
"storecontext"
],
"patterns": [
{
Expand Down
38 changes: 38 additions & 0 deletions doc/articles/features/windows-ui-storecontext.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
uid: Uno.Features.StoreContext
---

# Store Context

> [!TIP]
> This article provides Uno Platform-specific information for the `Windows.Services.Store.StoreContext` namespace. For a comprehensive overview of this feature and detailed usage instructions, refer to the official documentation for [Windows.Services.Store.StoreContext Namespace](https://learn.microsoft.com/uwp/api/Windows.Services.Store.StoreContext).
## In-App Review

The in-app review feature is currently supported on iOS and Android through Google Play.

### Google Play Integration

#### References in a Single Project

In an Uno Platform Single Project, you'll need to add the `GooglePlay` [Uno Feature](xref:Uno.Features.Uno.Sdk#uno-platform-features) as follows:

```xml
<UnoFeatures>
...
GooglePlay;
...
</UnoFeatures>
```

#### References in a Legacy Project

On all Uno Platform targets, you'll need the to add the `Uno.WinUI.GooglePlay` package to your project. This package is available on [nuget.org](https://www.nuget.org/packages/Uno.WinUI.GooglePlay).

### Usage

For iOS, no additional steps are needed—you can use the feature via the following snippet directly. On Android, ensure that you've added the above package to your project first.

```csharp
await Windows.Services.Store.StoreContext.GetDefault().RequestRateAndReviewAppAsync();
```
2 changes: 2 additions & 0 deletions doc/articles/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,8 @@
href: features/SpeechRecognition.md
- name: Step Counter
href: features/step-counter.md
- name: Store Context
href: features/windows-ui-storecontext.md
- name: Title Bar Customization
href: features/windows-ui-viewmanagement.md
- name: URI Launcher
Expand Down

0 comments on commit f9e59ad

Please sign in to comment.