Skip to content

Commit

Permalink
chore: Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
eriklimakc committed Dec 18, 2023
1 parent be370d8 commit 2d493fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/material-controls-extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ The above code will produce the following result:

![Uno Material Elevation Buttons with Tint Enabled](assets/material-elevation-buttons.png)

If we were to alter the code above and set `IsTintEnabled` to `False` (XAML: `um:ControlExtensions.IsTintEnabled="False"` / C#: `ControlExtensions(isTintEnabled: false)`) on each of the buttons, we would see elevated buttons without tints:
If we were to alter the code above and set `IsTintEnabled` to `False` (XAML: `um:ControlExtensions.IsTintEnabled="False"` or C#: `ControlExtensions(isTintEnabled: false)`) on each of the buttons, we would see elevated buttons without tints:

![Uno Material Elevation Buttons with Tint Disabled](assets/material-elevation-buttons-shadow-only.png)

Expand Down
4 changes: 2 additions & 2 deletions doc/material-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ If your application is based on the older solution template that includes a shar
1. Open an existing Uno project
2. In the Solution Explorer panel, right-click on your solution name and select `Manage NuGet Packages for Solution ...`. Choose either:
- The [`Uno.Material`](https://www.nuget.org/packages/Uno.Material/) package when targetting Xamarin/UWP
- The [`Uno.Material.WinUI`](https://www.nuget.org/packages/Uno.Material.WinUI) package for XAML or [`Uno.Material.WinUI.Markup`](https://www.nuget.org/packages/Uno.Material.WinUI.Markup) for C# Markup, when targetting net6.0+/WinUI
- The [`Uno.Material.WinUI`](https://www.nuget.org/packages/Uno.Material.WinUI) package when targetting net6.0+/WinUI

3. Select the following projects for installation:
- `PROJECT_NAME.Wasm.csproj`
- `PROJECT_NAME.Mobile.csproj` (or `PROJECT_NAME.iOS.csproj`, `PROJECT_NAME.Droid.csproj`, `PROJECT_NAME.macOS.csproj` if you have an existing project)
- `PROJECT_NAME.Skia.Gtk.csproj`
- `PROJECT_NAME.Skia.WPF.csproj`
- `PROJECT_NAME.Windows.csproj` (or `PROJECT_NAME.UWP.csproj` for existing projects)
4. Add the following resources inside the `App` file:
4. Add the following resources inside `App.xaml` file:

```xml
<Application ...>
Expand Down

0 comments on commit 2d493fc

Please sign in to comment.