-
-
Save jarakys/ccdcf97606c40bdd36e1928c06bd605d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Frame x:Name="frame1" Grid.Row="1" Grid.Column="2" Grid.ColumnSpan="1" BackgroundColor="{Binding ColorMessage}" HasShadow="false" CornerRadius="8" IsVisible="False"> | |
| <StackLayout x:Name="stack1" Margin="0,-2,0,0" Padding="0, 0, 0, 0" Orientation="Horizontal"> | |
| <Image | |
| x:Name="cameraImage" | |
| Source="{helpers:ImageResource RadiYous.Images.cameraIcon.png}" | |
| WidthRequest="40" | |
| HeightRequest="40" | |
| HorizontalOptions="Start"/> | |
| <Entry | |
| x:Name="msgEntry" | |
| TextColor="Black" | |
| HorizontalTextAlignment="Start" | |
| HorizontalOptions="Start" | |
| Placeholder="sdfsadfasdfasdfasdfsdfsadfsadf" | |
| PlaceholderColor="{x:Static local:UIUtils.MainTextColor}" | |
| /> | |
| <Image | |
| x:Name="sendMsgImage" | |
| Source="{ helpers:ImageResource RadiYous.Images.sendMsgIcon.png }" | |
| WidthRequest="40" | |
| HeightRequest="40" | |
| HorizontalOptions="EndAndExpand"/> | |
| </StackLayout> | |
| </Frame> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment