diff --git a/docs/tutorials/notes-app/includes/shell.md b/docs/tutorials/notes-app/includes/shell.md index 18cdab50..7c63dd03 100644 --- a/docs/tutorials/notes-app/includes/shell.md +++ b/docs/tutorials/notes-app/includes/shell.md @@ -54,6 +54,10 @@ Let's break down the key parts of the XAML controls placed on the page: - `` is the only child object of the . can only have one child object. The type can have multiple children. This layout control arranges its children vertically, one after the other. - `` operates the same as a ``, except its children are arranged horizontally. - `` displays an image, in this case it's using the `dotnet_bot.png` image that comes with every .NET MAUI project. + + > [!IMPORTANT] + > The file added to the project is actually `dotnet_bot.svg`. .NET MAUI converts Scalable Vector Graphics (SVG) files to Portable Network Graphic (PNG) files. Therefore, when adding an SVG file to your .NET MAUI app project, it should be referenced from XAML or C# with a `.png` extension. The only reference to the SVG file should be in your project file. + - `