Flutter 앱에 아름다운 컨테이너 추가
3029 단어 flutterprogrammingdart
다음과 같은 용도로 사용할 수 있습니다.
설치
최신 버전의 패키지를 pubspec.yaml에 추가하고
dart pub get
를 실행합니다.dependencies:
fancy_containers: ^0.0.4
import 'package:fancy_containers/fancy_containers.dart';
예시
수정할 수 있는 여러 속성이 있습니다.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: FancyContainer(
onTap: (){
print("Hello World");
},
color1: Colors.lightGreenAccent,
color2: Colors.lightBlue,
title: 'Hello World',
textcolor: Colors.white,
subtitle: 'This is a new package',
subtitlecolor: Colors.white,
),
),
);
산출
pub.devhere에서 패키지를 찾으십시오.
Reference
이 문제에 관하여(Flutter 앱에 아름다운 컨테이너 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/adityathakur/add-beautiful-containers-to-your-flutter-app-3g8m텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)