Questions tagged [table-calendar]
42 questions
0
votes
1 answer
Flutter: Why is the import for table_calendar not importing the event class?
I have a task widget that I want to convert to a Event widget to place on a TableCalender. However when I try to create a toEvent function I am unable due to the package not importing the Event class. Why is Event not imported?
import…

Rob Morrison
- 77
- 5
0
votes
0 answers
Flutter TableCalendar change the max amount of rows
I'm displaying a TableCalendar and want to reduce the max amount of rows, that are showing on one of Site of my Calendar, to a maximum of 5. It already shows 5 rows but with some exceptions like January and i get a Problem with the bottom space of…

Dominik Ladner
- 13
- 3
0
votes
0 answers
i want to create a customize table calender in flutter
This is the created in android previously but i want to create same on flutter
This calender i have created using a table calender package

Neelesh Sahu
- 1
- 1
0
votes
1 answer
TableCalendar Flutter
Please Help!!
I create an availability calendar using flutter, this calendar just only checks the availability calendar no book, I use HTTP, iCalendar_Parser, and Table_Calendar packages.
This Page Code
import '../utils.dart';
import…

Gede Destrawan
- 1
- 3
0
votes
1 answer
Display calendar availability in flutter using table_calendar, icalendar_parser and http
How to display calendar availability in flutter like similiar AIRBNB?
I dont know how to display json data to event table_calendar
I already combine code from package icalendar_parser and http, I use http for url and convert that string to json…

Gede Destrawan
- 1
- 3
0
votes
0 answers
Flutter tableCalendar no refresh event
I'm using TableCalendar for display event.
I want to fetch data from api when we change month.
On onPageChanged i have a function for add event.
changeEvent(pageDate) async {
//TODO : APPEL AJAX FROM DATE
String data = await…

Quillian Chardon
- 7
- 4
0
votes
1 answer
How do I change a textfield in an AlertDialog box to a list of clickable items which in Flutter
In my table calendar, the input from the textfield is currently displayed as shown. However, I want to change it to option when I input
after input
Here is my current code:
showDialog(
context: context,
builder: (context) => AlertDialog(
…

Shal
- 1
- 1
0
votes
0 answers
TableCalendar only shows dots on selected day
I have a calendar like this
TableCalendar(
onDaySelected: (date, date2) {
onDateChanged!(date2);
},
selectedDayPredicate: (day) => isSameDay(dateSelected, day),
calendarStyle: const…

Diana
- 935
- 10
- 31
0
votes
1 answer
How Can we adjust header height of a table_calendar in flutter
The default height of calendar header is too high how can I resize it to make the blue part of the calendar a little bit smaller
]
Container(
decoration: const BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
…

Anshif
- 1
- 1
0
votes
0 answers
How can i put a string as a title in header for table calendar?
Is it possible to put a const string as a header title for table calendar ?
And the package i am using is
table calendar
TableCalendar(
firstDay: DateTime.now(),
lastDay: DateTime.utc(2040, 10, 10),
focusedDay:…

Phanindra
- 1,110
- 2
- 11
- 24
0
votes
1 answer
How to add holidays in flutter table calendar
I am going to develop a holiday app in flutter using table calendar package.how can i add only special holidays in to calender.In my code every month 20 show as selected date.i want to select specific holiday in all the months.how can i do…

sameera
- 23
- 5
0
votes
0 answers
Refresh TableCalendar adding an Event on flutter
Good Morning programmers! i need some help, I'm making a calendar in flutter to save some "pictures" to say how are you feeling today (firebase).
But let's talk about my problem, i just want when i add an event, tablecalendar refresh his content…

Albert mora costillo
- 17
- 6
0
votes
0 answers
Flutter problem with async ( Need to execute first GetData and then execute this GetData)
OKay, i'm having a problem and this is with an async problem. I need to execute a function first after other part of code. Here is the problem
Future getData() async {
User? usuari = FirebaseAuth.instance.currentUser;
final allDataGlobal =…

Albert mora costillo
- 17
- 6
0
votes
0 answers
How to configure the eventloader with data from sqlite?
Hi I'm beginner of flutter
I want to make marker on my calendar with eventloader
I try to take the data from SQLite and deliver it to the eventloader, but I saw the log that it failed because it was a Future type.
Sqlite has data List of…

정나린
- 1
- 1
0
votes
2 answers
Flutter Table Calender Customized Desing
Hello Guys I want to achive this design in my flutter app but I dosen't know how to do that?
Design want to achive-
My code -
TableCalendar(
calendarFormat: CalendarFormat.week,
headerVisible: false,
focusedDay: DateTime.now(),
firstDay:…

Gayatri Dyunakhe
- 25
- 8