skip to Main Content

Flutter – How to high light the holidays date in the tableCaldender

TableCalendar( calendarFormat: CalendarFormat.month, daysOfWeekHeight: 20, daysOfWeekStyle: DaysOfWeekStyle( weekdayStyle: TextStyle().copyWith( color: Colors.black, fontWeight: FontWeight.w500, fontSize: 14.0, ), decoration: BoxDecoration( color: lightColor, borderRadius: BorderRadius.only( topLeft: Radius.circular(10), topRight: Radius.circular(10), ), ), ), headerStyle: HeaderStyle( decoration: BoxDecoration(), titleCentered: true, formatButtonVisible: false, leftChevronIcon: Icon( Icons.keyboard_arrow_left,…

VIEW QUESTION

flutter center text inside button

I cannot work out why this text is not centering inside the button: SizedBox( width: 30, height: 30, child: ElevatedButton( onPressed: () { FavourDown(); }, style: ElevatedButton.styleFrom( backgroundColor: Colors.black, // background color elevation: 5, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20), // button's…

VIEW QUESTION
Back To Top
Search