v3.8.0scroll_date_picker
Flutter용 사용자 정의가 가능하고 사용하기 쉬운 날짜 선택기 라이브러리입니다. Android, iOS, Web과 호환됩니다.
120좋아요 1.6만30일 다운로드150Pub 점수
AndroidiOS
Flutter용 사용자 정의가 가능하고 사용하기 쉬운 날짜 선택기 라이브러리입니다. Android 및 iOS 및 웹과 호환됩니다. 😍
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A customizable and easy-to-use date picker library for Flutter.
Compatible with Android & iOS & Web. :heart_eyes:
https://user-images.githubusercontent.com/55150540/151300615-dc982927-70e7-46f6-bd4b-f9aff729a02d.gif https://user-images.githubusercontent.com/55150540/151300623-de8f7cef-a6ac-492e-9293-00e8793a69c0.gif
In the pubspec.yaml of your flutter project, add the following dependency:
dependencies:
scroll_date_picker : "^lastest_version"
Need to include the import the package to the dart file where it will be used, refer the below command
import 'package:scroll_date_picker/scroll_date_picker.dart';
import 'package:flutter/material.dart';
import 'package:scroll_date_picker/scroll_date_picker.dart';
void main() {
runApp(MaterialApp(home: const MyApp()));
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
DateTime _selectedDate = DateTime.now();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Scroll Date Picker Example"),
centerTitle: true,
),
body: Column(
children: [
Container(
height: 100.0,
alignment: Alignment.center,
child: Text(
"$_selectedDate",
style: TextStyle(fontSize: 20.0, fontWeight: FontWeight.w500),
),
),
Container(
alignment: Alignment.centerRight,
padding: const EdgeInsets.only(right: 48),
child: TextButton(
onPressed: () {
setState(() {
_selectedDate = DateTime.now();
});
},
child: Text(
"TODAY",
style: TextStyle(color: Colors.red),
),
),
),
SizedBox(
height: 250,
child: ScrollDatePicker(
selectedDate: _selectedDate,
locale: Locale('en'),
onDateTimeChanged: (DateTime value) {
setState(() {
_selectedDate = value;
});
},
),
),
/// Showcase second image source
// SizedBox(
// height: 250,
// child: ScrollDatePicker(
// selectedDate: _selectedDate,
// locale: Locale('ko'),
// scrollViewOptions: DatePickerScrollViewOptions(
// year: ScrollViewDetailOptions(
// label: '년',
// margin: const EdgeInsets.only(right: 8),
// ),
// month: ScrollViewDetailOptions(
// label: '월',
// margin: const EdgeInsets.only(right: 8),
// ),
// day: ScrollViewDetailOptions(
// label: '일',
// )
// ),
// onDateTimeChanged: (DateTime value) {
// setState(() {
// _selectedDate = value;
// });
// },
// ),
// ),
],
),
);
}
}
Copyright 2020, the Flutter project authors. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.