spacing problem
See original GitHub issuehello. currently i faced passing problem can you suggest ,which changes is required
and my code is
`<ContentPage xmlns=“http://xamarin.com/schemas/2014/forms” xmlns:x=“http://schemas.microsoft.com/winfx/2009/xaml”
xmlns:local1="clr-namespace:HireME.CustomCells"
x:Class="HireME.ChatDetailspage" >
<ContentPage.Resources>
<ResourceDictionary>
<local1:SelectorDataTemplate x:Key="MessageTemplateSelector"/>
</ResourceDictionary>
</ContentPage.Resources>
<ContentPage.Content>
<StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" Orientation="Vertical">
<StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand" BackgroundColor="White" >
<ListView
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
x:Name="MessagesListView"
ItemTemplate="{StaticResource MessageTemplateSelector}"
ItemsSource="{Binding ListMessages}"
HasUnevenRows="True" SeparatorVisibility="None" IsEnabled="True" />
</StackLayout>
<BoxView HeightRequest="0.5" BackgroundColor="Gray" HorizontalOptions="FillAndExpand"/>
<StackLayout Orientation="Horizontal" x:Name="mystack" BackgroundColor="#f9f9f9">
<!--<Image Source="dashboard1.png" WidthRequest="40" HeightRequest="40" Margin="2,4,2,4">
<Image.GestureRecognizers>
<TapGestureRecognizer
Command="{Binding SendCommand}" />
</Image.GestureRecognizers>
</Image>-->
<Button Image="dashboard1.png" x:Name="mngbutton" Clicked="dashboard_click"></Button>
<Entry
HorizontalOptions="FillAndExpand"
Placeholder="Message"
VerticalOptions="EndAndExpand"
x:Name="MSG"
Text="{Binding OutText}" Keyboard="Chat" Margin="2,4,2,4"/>
<Image Source="sendButton.png" BackgroundColor="#f9f9f9" WidthRequest="30" HeightRequest="30" >
<Image.GestureRecognizers>
<TapGestureRecognizer
Command="{Binding SendCommand}" />
</Image.GestureRecognizers>
</Image>
</StackLayout>
</StackLayout>
</ContentPage.Content>
</ContentPage>`
Issue Analytics
- State:
- Created 5 years ago
- Comments:6
Top Results From Across the Web
How to Fix Uneven Spacing in MS Word - Bryan
To fix uneven spacing in your paper on a PC laptop or desktop computer: 1. Select your entire document by pressing CTRL-A. 2....
Read more >Change the line spacing in Word
Change the line spacing in an entire document. Go to Design > Paragraph Spacing. Choose an option. To single space your document, select...
Read more >Spacing Issues (Paragraph Copy Description
Main Causes of Spacing Issues · 1. Not using the Paste as Plain Text Button · 2. Placing more than one paragraph in...
Read more >I can't figure out how to fix this weird spacing problem
First thing to do is (depending on Word version) File/Options/Display, check Show All Formatting Marks. You should then see the pilcross (the P- ......
Read more >Too large spacing between words in Microsoft Word
Open a Word file whose character spacing you know is correct. ... Then, go to your problem file and make sure that the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have the same issues, with TabBar news for a fix? Thanks
Thank you so much @plsgard. I will study your code and implement in my solution. I will share the result here with you. Thanks again for your attention