v0.1.0
image_ink_well
Image InkWell Flutter 플러그인. 이는 사각형, 둥근 사각형, 원형 유형의 InkWell를 제공합니다.
16좋아요 1830일 다운로드25Pub 점수
플랫폼 정보 없음
Image InkWell Flutter 플러그인。
{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Image InkWell Flutter plugin.
https://raw.githubusercontent.com/acadia3000/image_ink_well/HEAD/ImageInkWell.gif
dependencies:
image_ink_well: ^0.1.0
import 'package:image_ink_well/image_ink_well.dart';
// rectangle image inkwell
ImageInkWell(
onPressed: () {
print('onPressed');
},
width: 300,
height: 180,
image: NetworkImage(
'https://images.unsplash.com/photo-1547651196-4bd31258de69?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60'),
splashColor: Color(0x32ff0000),
)
// rounded rectangle image inkwell
RoundedRectangleImageInkWell(
onPressed: () {
print('onPressed');
},
width: 300,
height: 150,
borderRadius: BorderRadius.only(
topLeft: const Radius.circular(20),
topRight: const Radius.circular(20),
bottomLeft: const Radius.circular(20)),
image: NetworkImage(
'https://images.unsplash.com/photo-1547332184-070705bccbd3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60'),
)
// circle image inkwell
CircleImageInkWell(
onPressed: () {
print('onPressed');
},
size: 200,
image: NetworkImage(
'https://images.unsplash.com/photo-1547651619-238e04d07889?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60'),
splashColor: Colors.white24,
)