Wrap 과 Chip 이란!

🦥 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,
                          )),
                          ...
                    ],
                  )

결과

Categories:

Updated:

Leave a comment