Skip to content

Commit 8ab20b0

Browse files
Updated Readme and changelog for version 1.1.0
1 parent 07aa764 commit 8ab20b0

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## [1.1.0] - 19/09/2019
1+
## [1.1.0] - 27/09/2019
22

3+
* Added Locale option to show date in different language
34
* Added option to limit the number of date shown in the list
45
* Added option to manage width and height of the timeline
56

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,18 @@ Use the `DatePickerTimeline` Widget
3939

4040
```
4141
DatePickerTimeline(
42-
this.currentDate, {
43-
Key key,
44-
this.width,
45-
this.height = 80,
46-
this.monthTextStyle = defaultMonthTextStyle,
47-
this.dayTextStyle = defaultDayTextStyle,
48-
this.dateTextStyle = defaultDateTextStyle,
49-
this.selectionColor = AppColors.defaultSelectionColor,
50-
this.daysCount = 50000,
51-
this.onDateChange,
52-
}) : super(key: key);
42+
this.currentDate, {
43+
Key key,
44+
this.width,
45+
this.height = 80,
46+
this.monthTextStyle = defaultMonthTextStyle,
47+
this.dayTextStyle = defaultDayTextStyle,
48+
this.dateTextStyle = defaultDateTextStyle,
49+
this.selectionColor = AppColors.defaultSelectionColor,
50+
this.daysCount = 50000,
51+
this.onDateChange,
52+
this.locale,
53+
}) : super(key: key);
5354
```
5455

5556
Author
@@ -61,3 +62,4 @@ Author
6162
Contributors
6263
------------
6364
* [BradInTheUSA](https://github.com/bradintheusa)
65+
* [Roger](https://github.com/rogermedeirosdasilva)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
# This is a generated file; do not edit or check into version control.
3+
export "FLUTTER_ROOT=/Users/vivek/development/flutter"
4+
export "FLUTTER_APPLICATION_PATH=/Users/vivek/StudioProjects/date_picker_timeline_flutter/example"
5+
export "FLUTTER_TARGET=lib/main.dart"
6+
export "FLUTTER_BUILD_DIR=build"
7+
export "SYMROOT=${SOURCE_ROOT}/../build/ios"
8+
export "FLUTTER_FRAMEWORK_DIR=/Users/vivek/development/flutter/bin/cache/artifacts/engine/ios"
9+
export "FLUTTER_BUILD_NAME=1.0.0"
10+
export "FLUTTER_BUILD_NUMBER=1"

0 commit comments

Comments
 (0)