Exemplo n.º 1
0
 public static void MapIsSwipeEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiCarouselRecyclerView).IsSwipeEnabled = carouselView.IsSwipeEnabled;
 }
Exemplo n.º 2
0
 public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
Exemplo n.º 3
0
 public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
Exemplo n.º 4
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
Exemplo n.º 5
0
 public static void MapIsSwipeEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
Exemplo n.º 6
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiCarouselRecyclerView).UpdateFromPosition();
 }
Exemplo n.º 7
0
 public static void MapIsBounceEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.Controller.CollectionView.Bounces = carouselView.IsBounceEnabled;
 }
Exemplo n.º 8
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdatePosition();
 }
Exemplo n.º 9
0
 public static void MapIsBounceEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdateIsBounceEnabled();
 }
Exemplo n.º 10
0
 public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller as CarouselViewController)?.UpdateLoop();
 }
Exemplo n.º 11
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdateCurrentItem();
 }
Exemplo n.º 12
0
 public static void MapPosition(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller as CarouselViewController)?.UpdateFromPosition();
 }
Exemplo n.º 13
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller as CarouselViewController)?.UpdateFromCurrentItem();
 }
Exemplo n.º 14
0
 public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.Controller.Layout as CarouselViewLayout)?.UpdateConstraints(handler.PlatformView.Frame.Size);
     handler.Controller.Layout.InvalidateLayout();
 }
Exemplo n.º 15
0
 public static void MapIsBounceEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.PlatformView.OverScrollMode = carouselView?.IsBounceEnabled == true ? OverScrollMode.Always : OverScrollMode.Never;
 }
Exemplo n.º 16
0
 public static void MapLoop(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.UpdateLoop();
 }
Exemplo n.º 17
0
 public static void MapPeekAreaInsets(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiRecyclerView <CarouselView>).UpdateAdapter();
 }
Exemplo n.º 18
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
 }
Exemplo n.º 19
0
 public static void MapCurrentItem(CarouselViewHandler handler, CarouselView carouselView)
 {
     (handler.PlatformView as IMauiCarouselRecyclerView).UpdateFromCurrentItem();
 }
Exemplo n.º 20
0
 public static void MapIsSwipeEnabled(CarouselViewHandler handler, CarouselView carouselView)
 {
     handler.Controller.CollectionView.ScrollEnabled = carouselView.IsSwipeEnabled;
 }