728x90
https://api.flutter.dev/flutter/services/Clipboard-class.html
플루터에서 지원하는 기본적인 clipboard를 이용하면 간단하게 복사할수있다!
여기서 우리는 get Data를 사용할건데
button을 만들어서 onTap function안에 넣어주면 된다!
Clipboard.setData(ClipboardData(text: "복사하고싶은 데이터 추가"));
GestureDetector(
onTap: (){
Clipboard.setData(ClipboardData(text: "복사하고싶은거 넣기"));
},
child: Container(
margin: EdgeInsets.only(left: 3),
width: 33,
height: 19,
decoration: BoxDecoration(
border: Border.all(
width: 1.3,
color: Color(0xffeaeaea)
),
borderRadius: BorderRadius.all(Radius.circular(2))
),
child: Center(
child: SpoqaNormalText(
title: "복사",
color: Color(0xff868686),
fontSize: 11,
),
)
),
)
끝!
728x90
'FRAMEWORK > FLUTTER' 카테고리의 다른 글
flutter textfield only number (0) | 2022.04.13 |
---|---|
[flutter] setState 사용하지않고 스크롤시 bottom navigation bar 안보이게 하기 (1) | 2022.04.05 |
flutter datetime format (1) | 2022.02.22 |
플루터 bar chart에서 가로 스크롤 추가하기 (0) | 2022.01.10 |
flutter apple login android & ios 모두 완료 (5) | 2022.01.06 |