Unplanned
Last Updated: 21 Jun 2022 13:52 by ADMIN
Good day,

I noticed that the corner radius does not effect the button border.   Is there a work around to have rounded button border for iOS.  I've attached the code used to define the one button on the screen.


        <Grid BackgroundColor="{StaticResource LightGrey}">
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <controls:FaSearchBar Grid.Row="0" Margin="20"
                                  x:Name="searchBar" TextColor="{StaticResource Black}" Text="{Binding SearchText}"
                                  Placeholder="{Binding Localize[TextSearchFulfillment]}" PlaceholderColor="{StaticResource DarkGrey}"
                                  BackgroundColor="{StaticResource LightGrey}">
            </controls:FaSearchBar>
            <Grid Grid.Row="1" BackgroundColor="{StaticResource White}">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto" />
                    <ColumnDefinition Width="*" />
                    <ColumnDefinition Width="Auto" />
                </Grid.ColumnDefinitions>
                <Label Grid.Column="0" Text="21 Pending Orders" Style="{StaticResource SecondaryTextLabel}" 
                       VerticalOptions="Center" Margin="20,0,20,0"/>
                <Label Grid.Column="1" Text="Last synced on: June 3, 09:41 AM"
                       Style="{StaticResource  SummaryTextLabel}"
                       TextColor="{StaticResource DarkGrey}"
                       HorizontalOptions="EndAndExpand"  />
                <telerikInput:RadButton Grid.Column="2" Text="Sync Now" TextColor="{StaticResource DarkGrey}" 
                                        HorizontalOptions="EndAndExpand" Margin="20,10,20,10" 
                                        BorderThickness="2"
                                        CornerRadius="10"
                                        BorderColor="{StaticResource LightGrey}">
                    <telerikInput:RadButton.ImageSource>
                        <FontImageSource Size="Small" FontFamily="{DynamicResource FontAwesome5ProRegular}"
                                         Glyph="{x:Static xaml:Icons.Rotate}" Color="{StaticResource DarkGrey}" />
                    </telerikInput:RadButton.ImageSource>
                </telerikInput:RadButton>
            </Grid>
        </Grid>

Unplanned
Last Updated: 06 Jan 2022 10:03 by ADMIN
Created by: Todd
Comments: 0
Category: Button
Type: Feature Request
1

Telerik UI for Xamarin Button does not provide a property for text wrapping. on iOS you can achieve this by using a custom renderer

On Android the text wraps automatically.

Unplanned
Last Updated: 10 Mar 2021 11:34 by ADMIN

Currently the Xamarin.Forms Button ContentLayout property controls the position of the button image and the spacing between the button's image and the button's text. This property can be used in RadButton as it inherits from the Xamarin.Forms Button.
Would be great to have the resizing option for image in RadButton in future releases.

Unplanned
Last Updated: 28 Jan 2020 12:16 by ADMIN
Created by: Chris
Comments: 1
Category: Button
Type: Feature Request
4
The current Telerik Button relies on the base button implementation for displaying the button image. This implementation does not provide image scaling and requires the image source to be the correct pixels. By contrast, the ImageButton control auto-scales the image to fit the size of the control but leaves off a lot of the features that the Button control has (text, background image/color, etc.).

I am proposing an implementation of the existing Button that simply adds auto-scaling to the buttons Image property. It would also be good to be able to set the image Height and Width requests.
Unplanned
Last Updated: 08 Mar 2019 07:58 by ADMIN
Created by: Allcloud
Comments: 0
Category: Button
Type: Feature Request
3

Hi, Please provide provision to set gradient background colour for Button. please find attachment for example to show gradient background colour for Button

Unplanned
Last Updated: 21 Jun 2018 13:12 by ADMIN
If you have set the HorizontalContentAlignment to some other value (End, Start) and you run the application in Release mode in UWP -> the value is reset to center.
Unplanned
Last Updated: 08 Feb 2018 09:36 by ADMIN
In the cases when a partially transparent image needs to be used so that the BackgroundColor of the button should be visible in the transparent areas of the image.
Currently the image completely overrides the color. We should consider allowing the use of the two properties alongside.