v0.7.2tap_to_expand
이 패키지는 몇 줄의 코드로 빠르고 쉽게 확장 가능한 위젯을 만들 수 있으며 원하는 대로 사용자 정의할 수 있습니다.
98좋아요 16530일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
이 패키지는 몇 줄의 코드로 빠르고 쉽게 확장 가능한 위젯을 만들 수 있으며, 원하는 대로 사용자 정의할 수 있습니다!
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0^1.24.9아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
anouncement pub package
This package provides an easy and fast way to build expandable widgets with minimal code. You can customize these widgets according to your needs.
isScrollable parameterTo use this plugin, add tap_to_expand as a dependency in your pubspec.yaml file.
dependencies:
tap_to_expand: ^1.0.0
Here is How to use TapToExpand class, You can find Package Api HERE
Center(
child: TapToExpand(
content: Column(
children: <Widget>[
for (var i = 0; i < 20; i++)
Text(
"data $i",
style: const TextStyle(color: Colors.white, fontSize: 20),
),
],
),
title: const Text(
'TapToExpand',
style: TextStyle(
color: Colors.white,
fontSize: 20,
),
),
onTapPadding: 10,
closedHeight: 70,
scrollable: true,
borderRadius: 10,
openedHeight: 200,
),
),
For more information and customization options, visit the TapToExpand GitHub repository.
TapToExpandLetter(
// autoClose: false, default is true
title: const Text(
'Tap to Expand',
style: TextStyle(
color: Colors.white,
fontSize: 16,
fontWeight: FontWeight.w600),
),
content: Column(
children: const [
Text(
'Feel free to use the code in your projects but do not forget to give me the credits adding (Flutter Animation Gallery) where you are gonna use it.',
style: TextStyle(
color: Colors.white,
fontSize: 18,
fontWeight: FontWeight.w400,
),
),
// Image.asset(
// 'assets/image_ex.png',
// width: 150,
// height: 150,
// ),
],
),
centerWidget: const Icon(
Icons.expand_less_rounded,
size: 50,
))
],
),