skip to Main Content

Flutter – FAILURE: Build failed with an exception. * What went wrong: // Execution failed for task ':app:mergeExtDexDebug',

When try to run the flutter dart program on physical device mobile at that time below error will show sometimes in Android Studio terminal : Note: C:UsersAdministratorAppDataLocalPubCachehostedpub.devcloud_firestore-4.14.0androidsrcmainjavaioflutterpluginsfirebasefirestoreFlutterFirebaseFirestorePlugin.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note:…

VIEW QUESTION

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