.NET MAUI Community Toolkit 사용 | 브랜든 미닉

  • 다양한 Converter 제공
  • 다양한 Behavior 제공
  • C# 마크업 확장 : XAML이 아니라 C# 으로도 마크업할 수 있는 방법을 제공합니다.
Content = new Grid
        {
            RowSpacing = 25,
            ColumnSpacing = 0,

            Padding = Device.RuntimePlatform switch
            {
                Device.iOS => new Thickness(30, 60, 30, 30),
                _ => new Thickness(30)
            },

            RowDefinitions = Rows.Define(
                (Row.HelloWorld, 44),
                (Row.Welcome, Auto),
                (Row.Count, Auto),
                (Row.ClickMeButton, Auto),
                (Row.Image, Star)),

            ColumnDefinitions = Columns.Define(
            	(Column.Text, Star),
                (Column.Number, Star)),
...

좀더 자세한 내용은 아래 링크를 참조하세요.

https://codetraveler.io/2021/10/18/using-net-maui-community-toolkit/

2개의 좋아요