Skyost / FlutterWeekView

Displays a highly customizable week view (or day view) which is able to display events, to be scrolled, to be zoomed-in & out and a lot more !
https://pub.dev/packages/flutter_week_view
MIT License
208 stars 88 forks source link

Show multiple days on screen #77

Closed yanis60 closed 3 years ago

yanis60 commented 3 years ago

Hi, How to show multiple days on the screen at the same time?

Skyost commented 3 years ago

In the WeekView style, set dayViewWidth: <what you want> (I use it here to fit more than one DayView for large screens).

yanis60 commented 3 years ago

merci beaucoup.

How to change date format to dd MMM yyyy?

Skyost commented 3 years ago

In the day bar ? Just pass a custom dateFormatter to the day bar style :wink:

yanis60 commented 3 years ago

could you please show me an example?

Skyost commented 3 years ago
style: DayBarStyle(
  dateFormatter: (date) => DateFormat.yMMMd().format(date)
)

(assuming that you're using intl).

yanis60 commented 3 years ago

merci beaucoup mon frère