| 123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <mobile:MobilePage
- xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- xmlns:local="clr-namespace:PRS.Mobile"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
- x:Class="PRS.Mobile.NotesPage"
- >
- <mobile:MobilePage.PrimaryMenu>
- <mobile:MobileMenuButton
- Image="tick"
- Clicked="MobileMenuButton_OnClicked" />
- </mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobilePage.PageContent>
- <Frame
- x:Name="notesFrame"
- CornerRadius="5"
- BorderColor="Gray"
- Margin="5"
- Padding="5"
- BackgroundColor="LightYellow"
- HasShadow="False">
-
- <mobile:MobileEditor
- x:Name="Notes"
- BackgroundColor="
- Transparent"
- Keyboard="Default"
- TextColor="Black"/>
-
- </Frame>
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|