@@ -37,6 +37,7 @@ void SetupBuilder()
3737 handlers . AddHandler < ActivityIndicator , ActivityIndicatorHandler > ( ) ;
3838 handlers . AddHandler < Border , BorderHandler > ( ) ;
3939 handlers . AddHandler < BoxView , BoxViewHandler > ( ) ;
40+ handlers . AddHandler < Button , ButtonHandler > ( ) ;
4041 handlers . AddHandler < CarouselView , CarouselViewHandler > ( ) ;
4142 handlers . AddHandler < CollectionView , CollectionViewHandler > ( ) ;
4243#if IOS || MACCATALYST
@@ -60,6 +61,7 @@ void SetupBuilder()
6061 handlers . AddHandler < Picker , PickerHandler > ( ) ;
6162 handlers . AddHandler < Polygon , PolygonHandler > ( ) ;
6263 handlers . AddHandler < Polyline , PolylineHandler > ( ) ;
64+ handlers . AddHandler < ProgressBar , ProgressBarHandler > ( ) ;
6365 handlers . AddHandler < IContentView , ContentViewHandler > ( ) ;
6466 handlers . AddHandler < Image , ImageHandler > ( ) ;
6567 handlers . AddHandler < ImageButton , ImageButtonHandler > ( ) ;
@@ -145,6 +147,7 @@ await CreateHandlerAndAddToWindow(new Window(navPage), async () =>
145147 [ InlineData ( typeof ( ActivityIndicator ) ) ]
146148 [ InlineData ( typeof ( Border ) ) ]
147149 [ InlineData ( typeof ( BoxView ) ) ]
150+ [ InlineData ( typeof ( Button ) ) ]
148151 [ InlineData ( typeof ( CarouselView ) ) ]
149152 [ InlineData ( typeof ( ContentView ) ) ]
150153 [ InlineData ( typeof ( CheckBox ) ) ]
@@ -168,6 +171,7 @@ await CreateHandlerAndAddToWindow(new Window(navPage), async () =>
168171 [ InlineData ( typeof ( Picker ) ) ]
169172 [ InlineData ( typeof ( Polygon ) ) ]
170173 [ InlineData ( typeof ( Polyline ) ) ]
174+ [ InlineData ( typeof ( ProgressBar ) ) ]
171175 [ InlineData ( typeof ( RadioButton ) ) ]
172176 [ InlineData ( typeof ( Rectangle ) ) ]
173177 [ InlineData ( typeof ( RefreshView ) ) ]
0 commit comments