style - Wrap/Chip

Hee Tae Shin·2023년 2월 12일
1

Flutter-style

목록 보기
1/1
post-thumbnail

Wrap/Chip

Wrap(
                    // 정렬 : default. start
                    alignment: WrapAlignment.start,
                    // 클립들 좌우 사이 간격
                    spacing: 4,
                    // 2줄일때, 간격
                    // runSpacing: 30,
                    children: [
                      // 클립
                      Chip(
                          backgroundColor: Colors.grey[800],
                          label: Text(
                            '건강',
                            style: FooderlichTheme.darkTextTheme.bodyText1,
                          )),
                      Chip(
                          backgroundColor: Colors.grey[800],
                          label: Text(
                            '건강',
                            style: FooderlichTheme.darkTextTheme.bodyText1,
                          )),
                          ...
                    ],
                  )

결과

profile
안녕하세요

0개의 댓글