seong
Flutter - velocity_x 패키지 본문
Flutter의 라이브러리 중 코딩을 편하게 해주는 라이브러리가 있다.
velocity_x 라는 라이브러리 이다.
https://pub.dev/packages/velocity_x
Container
Velocity
Container().box.color(Colors.red).size(20, 20).make(),
기존 Container
Container(
width: 20,
height: 20,
color: Colors.red,
)
Padding
Velocity
Container(
width: 20,
height: 20,
color: Colors.red,
).pSymmetric(h: 20,v: 20)
기존
Padding(
padding: const EdgeInsets.symmetric(horizontal: 20,vertical: 20),
child: Container(
width: 20,
height: 20,
color: Colors.red,
),
)
Text
Velocity
"Velocity_x textWidget"
.text
.color(Colors.blue)
.bold
.size(20)
.make(),
기존
Text(
"Velocity_x textWidget",
style: TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
fontSize: 20,
),
)
간단하게 사용해보았지만, Padding이나, Radius등 간단한 속성은 괜찮았지만 그 외는 Velocity보단 기존 방식이 좀 더 보기 편한 것 같다.
'Flutter' 카테고리의 다른 글
Flutter - 페이지 이동 시 특정 위젯으로 자동 스크롤하기 (0) | 2024.06.03 |
---|---|
Flutter - Ios App Name 국제화 하기 (0) | 2024.03.14 |
Flutter - Android App Name 국제화 하기 (0) | 2024.03.14 |
Flutter - 패스트캠퍼스 3일차 (0) | 2024.03.06 |
MediaQuey.size 와 double.infinity의 차이점 (0) | 2024.01.25 |