@@ -3,42 +3,42 @@ namespace Maui.Controls.Sample.Issues;
33[ Issue ( IssueTracker . Github , "29492" , "CharacterSpacing should be applied" , PlatformAffected . Android | PlatformAffected . iOS ) ]
44public class Issue29492 : TestShell
55{
6- protected override void Init ( )
7- {
8- var shellContent = new ShellContent
9- {
10- Title = "Home" ,
11- Content = new Issue29492ContentPage ( ) { Title = "Home" }
12- } ;
6+ protected override void Init ( )
7+ {
8+ var shellContent = new ShellContent
9+ {
10+ Title = "Home" ,
11+ Content = new Issue29492ContentPage ( ) { Title = "Home" }
12+ } ;
1313
14- Items . Add ( shellContent ) ;
15- }
14+ Items . Add ( shellContent ) ;
15+ }
1616
17- class Issue29492ContentPage : ContentPage
18- {
19- public Issue29492ContentPage ( )
20- {
21- var searchHandler = new SearchHandler
22- {
23- CharacterSpacing = 10
24- } ;
17+ class Issue29492ContentPage : ContentPage
18+ {
19+ public Issue29492ContentPage ( )
20+ {
21+ var searchHandler = new SearchHandler
22+ {
23+ CharacterSpacing = 10
24+ } ;
2525
26- var button = new Button
27- {
28- Text = "Enter Text" ,
29- AutomationId = "Entertext" ,
30- HorizontalOptions = LayoutOptions . Center ,
31- VerticalOptions = LayoutOptions . Center ,
32- } ;
26+ var button = new Button
27+ {
28+ Text = "Enter Text" ,
29+ AutomationId = "Entertext" ,
30+ HorizontalOptions = LayoutOptions . Center ,
31+ VerticalOptions = LayoutOptions . Center ,
32+ } ;
3333
34- button . Clicked += ( s , e ) =>
35- {
36- searchHandler . Query = "Hello World" ;
37- } ;
34+ button . Clicked += ( s , e ) =>
35+ {
36+ searchHandler . Query = "Hello World" ;
37+ } ;
3838
39- Shell . SetSearchHandler ( this , searchHandler ) ;
39+ Shell . SetSearchHandler ( this , searchHandler ) ;
4040
41- Content = button ;
42- }
43- }
41+ Content = button ;
42+ }
43+ }
4444}
0 commit comments