Profile Page and Back Button Click

merge-update-with-lab-changes
Mirza.Shafique 5 years ago
parent 6261f01ab6
commit d664a216c6

@ -1497,4 +1497,6 @@ const Map localizedValues = {
"years": {"en": "Years", "ar": "سنوات"}, "years": {"en": "Years", "ar": "سنوات"},
"respirationBPM": { "en": "bpm", "ar": "نفس" }, "respirationBPM": { "en": "bpm", "ar": "نفس" },
"extremeObese": {"en": "Extreme Obese", "ar": "السمنة المفرطة"}, "extremeObese": {"en": "Extreme Obese", "ar": "السمنة المفرطة"},
"selectLanguage": { "en": "Please select any language:", "ar": ":الرجاء تحديد أي لغة" },
"recAlert": { "en": "How do you want to receive alerts?", "ar": "كيف تريد تلقي التنبيهات؟" },
}; };

@ -102,6 +102,10 @@ class _LandingPageState extends State<LandingPage> with WidgetsBindingObserver {
LocationUtils locationUtils; LocationUtils locationUtils;
Future<bool> onWillPop() { Future<bool> onWillPop() {
if (currentTab != 0) {
changeCurrentTab(0);
return Future.value(false);
} else {
DateTime now = DateTime.now(); DateTime now = DateTime.now();
if (currentBackPressTime == null || now.difference(currentBackPressTime) > Duration(seconds: 2)) { if (currentBackPressTime == null || now.difference(currentBackPressTime) > Duration(seconds: 2)) {
currentBackPressTime = now; currentBackPressTime = now;
@ -110,6 +114,7 @@ class _LandingPageState extends State<LandingPage> with WidgetsBindingObserver {
} }
return Future.value(true); return Future.value(true);
} }
}
changeCurrentTab(int tab) { changeCurrentTab(int tab) {
if (!projectViewModel.isLogin) { if (!projectViewModel.isLogin) {

@ -50,17 +50,20 @@ class _VitalSingChartAndDetialsState extends State<VitalSingChartAndDetials> {
return SingleChildScrollView( return SingleChildScrollView(
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Card( Container(
height: 400,
child: Card(
shape: cardRadius(12), shape: cardRadius(12),
elevation: 1, elevation: 1,
margin: EdgeInsets.only(left: 16, top: 16, right: 16, bottom: 8), margin: EdgeInsets.only(left: 16, top: 16, right: 16, bottom: 8),
// child: ShowChart( child: ShowChart(
// title: widget.name, title: widget.name,
// timeSeries: timeSeriesData, timeSeries: timeSeriesData,
// indexes: timeSeriesData.length ~/ 5.5, indexes: timeSeriesData.length ~/ 5.5,
// horizontalInterval: 8, horizontalInterval: 8,
// ), ),
child: SyncFuChart(), // child: SyncFuChart(),
),
), ),
Card( Card(
shape: cardRadius(12), shape: cardRadius(12),

@ -2,9 +2,11 @@ import 'package:diplomaticquarterapp/core/viewModels/dashboard_view_model.dart';
import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart'; import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart';
import 'package:diplomaticquarterapp/pages/base/base_view.dart'; import 'package:diplomaticquarterapp/pages/base/base_view.dart';
import 'package:diplomaticquarterapp/services/authentication/auth_provider.dart'; import 'package:diplomaticquarterapp/services/authentication/auth_provider.dart';
import 'package:diplomaticquarterapp/theme/colors.dart';
import 'package:diplomaticquarterapp/uitl/app_toast.dart'; import 'package:diplomaticquarterapp/uitl/app_toast.dart';
import 'package:diplomaticquarterapp/uitl/gif_loader_dialog_utils.dart'; import 'package:diplomaticquarterapp/uitl/gif_loader_dialog_utils.dart';
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart'; import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
import 'package:diplomaticquarterapp/uitl/utils_new.dart';
import 'package:diplomaticquarterapp/widgets/buttons/defaultButton.dart'; import 'package:diplomaticquarterapp/widgets/buttons/defaultButton.dart';
import 'package:diplomaticquarterapp/widgets/text/app_texts_widget.dart'; import 'package:diplomaticquarterapp/widgets/text/app_texts_widget.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
@ -16,8 +18,7 @@ class ProfileSettings extends StatefulWidget {
_ProfileSettings createState() => _ProfileSettings(); _ProfileSettings createState() => _ProfileSettings();
} }
class _ProfileSettings extends State<ProfileSettings> class _ProfileSettings extends State<ProfileSettings> with TickerProviderStateMixin {
with TickerProviderStateMixin {
bool smsAlert = true; bool smsAlert = true;
bool emailAlert = true; bool emailAlert = true;
int language = 1; int language = 1;
@ -25,6 +26,7 @@ class _ProfileSettings extends State<ProfileSettings>
TextEditingController emergencyContact = new TextEditingController(); TextEditingController emergencyContact = new TextEditingController();
TextEditingController emailController = new TextEditingController(); TextEditingController emailController = new TextEditingController();
TextEditingController emergencyContactName = new TextEditingController(); TextEditingController emergencyContactName = new TextEditingController();
@override @override
void initState() { void initState() {
Future.delayed(new Duration(seconds: 0), () { Future.delayed(new Duration(seconds: 0), () {
@ -40,45 +42,66 @@ class _ProfileSettings extends State<ProfileSettings>
onModelReady: (model) => {}, onModelReady: (model) => {},
builder: (_, model, wi) => Container( builder: (_, model, wi) => Container(
child: model.user != null child: model.user != null
? ListView(scrollDirection: Axis.vertical, children: <Widget>[ ? Column(
Container( children: [
color: Theme.of(context).textTheme.headline2.color, Expanded(
padding: EdgeInsets.all(15), child: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Card(
shape: cardRadius(8),
margin: EdgeInsets.zero,
elevation: 3,
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.start,
children: [ children: [
AppText( Text(
TranslationBase.of(context).fileNo, TranslationBase.of(context).fileNo + ": ",
color: Colors.black, style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
letterSpacing: -0.64,
), ),
AppText( ),
Text(
model.user.patientID.toString(), model.user.patientID.toString(),
color: Colors.black, style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
letterSpacing: -0.64,
), ),
],
), ),
],
), ),
SizedBox(
height: 1,
width: MediaQuery.of(context).size.width,
child: Container(
color: Colors.grey[300],
), ),
), ),
Padding( mHeight(12),
child: AppText( Text(
TranslationBase.of(context).languageSetting, TranslationBase.of(context).languageSetting,
fontWeight: FontWeight.bold), style: TextStyle(
padding: EdgeInsets.all(10), fontSize: 16,
fontWeight: FontWeight.w600,
letterSpacing: -0.64,
), ),
Container( ),
color: Theme.of(context).textTheme.headline2.color, Text(
padding: EdgeInsets.only( TranslationBase.of(context).selectLanguage,
top: 0, left: 10, right: 10, bottom: 0), style: TextStyle(
fontSize: 12,
fontWeight: FontWeight.w600,
letterSpacing: -0.48,
),
),
Row(
children: [
Expanded(
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
AppText(TranslationBase.of(context).english),
new Radio( new Radio(
value: 2, value: 2,
groupValue: language, groupValue: language,
@ -87,18 +110,21 @@ class _ProfileSettings extends State<ProfileSettings>
language = value; language = value;
}); });
}, },
) ),
Text(
TranslationBase.of(context).english,
style: TextStyle(
fontSize: 12,
letterSpacing: -0.48,
),
),
], ],
)), ),
Container( ),
color: Theme.of(context).textTheme.headline2.color, Expanded(
padding: EdgeInsets.only(
top: 0, left: 10, right: 10, bottom: 0),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
AppText(TranslationBase.of(context).arabic), Radio(
new Radio(
value: 1, value: 1,
groupValue: language, groupValue: language,
onChanged: (value) { onChanged: (value) {
@ -106,130 +132,207 @@ class _ProfileSettings extends State<ProfileSettings>
language = value; language = value;
}); });
}, },
) ),
Text(
TranslationBase.of(context).arabic,
style: TextStyle(
fontSize: 12,
letterSpacing: -0.48,
),
),
], ],
)),
Padding(
child: AppText(TranslationBase.of(context).alert),
padding: EdgeInsets.all(10),
), ),
Container( ),
color: Theme.of(context).textTheme.headline2.color, ],
padding: EdgeInsets.only( ),
top: 0, left: 10, right: 10, bottom: 0), mHeight(12),
child: Row( Text(
mainAxisAlignment: MainAxisAlignment.spaceBetween, TranslationBase.of(context).alert,
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
letterSpacing: -0.64,
),
),
Text(
TranslationBase.of(context).recAlert,
style: TextStyle(
fontSize: 12,
fontWeight: FontWeight.w600,
letterSpacing: -0.48,
),
),
Row(
children: [ children: [
AppText(TranslationBase.of(context).emailAlert), Checkbox(
Switch(
value: emailAlert, value: emailAlert,
onChanged: (value) { onChanged: (value) {
setState(() { setState(() {
emailAlert = value; emailAlert = value;
}); });
}, },
activeTrackColor: Colors.lightGreenAccent, activeColor: CustomColors.accentColor,
activeColor: Colors.green, ),
) Text(
TranslationBase.of(context).emailAlert,
style: TextStyle(
fontSize: 12,
letterSpacing: -0.48,
),
),
], ],
)), ),
Container( Row(
color: Theme.of(context).textTheme.headline2.color,
padding: EdgeInsets.only(
top: 0, left: 10, right: 10, bottom: 0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
AppText(TranslationBase.of(context).smsAlert), Checkbox(
Switch(
value: smsAlert, value: smsAlert,
onChanged: (value) { onChanged: (value) {
setState(() { setState(() {
smsAlert = value; smsAlert = value;
}); });
}, },
activeTrackColor: Colors.lightGreenAccent, activeColor: CustomColors.accentColor,
activeColor: Colors.green, ),
) Text(
TranslationBase.of(context).smsAlert,
style: TextStyle(
fontSize: 12,
letterSpacing: -0.48,
),
),
], ],
)),
Padding(
child: AppText(TranslationBase.of(context).contactInfo),
padding: EdgeInsets.all(10),
), ),
Container( mHeight(16),
color: Theme.of(context).textTheme.headline2.color, Text(
padding: EdgeInsets.only( TranslationBase.of(context).contactInfo,
top: 0, left: 10, right: 10, bottom: 0), style: TextStyle(
child: Column( fontSize: 16,
crossAxisAlignment: CrossAxisAlignment.start, fontWeight: FontWeight.w600,
children: [ letterSpacing: -0.64,
AppText(TranslationBase.of(context).email), ),
TextField( ),
controller: emailController, mHeight(12),
decoration: InputDecoration( inputWidget(TranslationBase.of(context).email, "", emailController),
suffixIcon: Icon(Icons.edit), mHeight(8),
)) inputWidget(TranslationBase.of(context).emergencyName, "", emergencyContactName),
mHeight(8),
inputWidget(TranslationBase.of(context).emergencyContact, "", emergencyContact),
mHeight(8),
], ],
)), ),
),
),
),
Container( Container(
color: Theme.of(context).textTheme.headline2.color, width: double.infinity,
padding: EdgeInsets.only( child: Card(
top: 0, left: 10, right: 10, bottom: 0), margin: EdgeInsets.zero,
child: Column( elevation: 20,
crossAxisAlignment: CrossAxisAlignment.start, child: Padding(
children: [ padding: const EdgeInsets.only(left: 16, right: 16, bottom: 16, top: 16),
AppText(TranslationBase.of(context).emergencyName), child: DefaultButton(
TextField( TranslationBase.of(context).save,
controller: emergencyContactName, () {
decoration: InputDecoration( saveSettings();
suffixIcon: Icon(Icons.edit), },
)) ),
),
),
),
], ],
)), )
Container( : Center(
color: Theme.of(context).textTheme.headline2.color, child: AppText(TranslationBase.of(context).loginToUseService),
padding: EdgeInsets.only( ),
top: 0, left: 10, right: 10, bottom: 0), ),
);
}
Widget inputWidget(String _labelText, String _hintText, TextEditingController _controller, {String prefix, bool isEnable = true, bool hasSelection = false}) {
return Container(
padding: EdgeInsets.only(left: 16, right: 16, bottom: 15, top: 15),
alignment: Alignment.center,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(15),
color: Colors.white,
border: Border.all(
color: Color(0xffefefef),
width: 1,
),
),
child: InkWell(
onTap: hasSelection ? () {} : null,
child: Row(
children: [
Expanded(
child: Column( child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
AppText( Text(
TranslationBase.of(context).emergencyContact), _labelText,
style: TextStyle(
fontSize: 11,
fontWeight: FontWeight.w600,
color: Color(0xff2B353E),
letterSpacing: -0.44,
),
),
TextField( TextField(
controller: emergencyContact, enabled: isEnable,
scrollPadding: EdgeInsets.zero,
keyboardType: TextInputType.number,
controller: _controller,
// onChanged: (value) => {validateForm()},
style: TextStyle(
fontSize: 14,
height: 21 / 14,
fontWeight: FontWeight.w400,
color: Color(0xff2B353E),
letterSpacing: -0.44,
),
decoration: InputDecoration( decoration: InputDecoration(
suffixIcon: Icon(Icons.edit), isDense: true,
hintText: _hintText,
hintStyle: TextStyle(
fontSize: 14,
height: 21 / 14,
fontWeight: FontWeight.w400,
color: Color(0xff575757),
letterSpacing: -0.56,
),
prefixIconConstraints: BoxConstraints(minWidth: 50),
prefixIcon: prefix == null
? null
: Text(
"+" + prefix,
style: TextStyle(
fontSize: 14,
height: 21 / 14,
fontWeight: FontWeight.w500,
color: Color(0xff2E303A),
letterSpacing: -0.56,
),
),
contentPadding: EdgeInsets.zero,
border: InputBorder.none,
focusedBorder: InputBorder.none,
enabledBorder: InputBorder.none,
),
), ),
)
], ],
)), ),
Container( ),
padding: EdgeInsets.all(10), if (hasSelection) Icon(Icons.keyboard_arrow_down_outlined),
child: Row(
children: <Widget>[
Expanded(
child: DefaultButton(
TranslationBase.of(context).save,
() {
saveSettings();
},
)),
], ],
)) ),
]) ),
: Center( );
child:
AppText(TranslationBase.of(context).loginToUseService),
)));
} }
getSettings(context) { getSettings(context) {
GifLoaderDialogUtils.showMyDialog(context); GifLoaderDialogUtils.showMyDialog(context);
authService.getSettings().then((result) => { authService.getSettings().then((result) => {GifLoaderDialogUtils.hideDialog(context), setValue(result["PateintInfoForUpdateList"][0])});
GifLoaderDialogUtils.hideDialog(context),
setValue(result["PateintInfoForUpdateList"][0])
});
} }
setValue(value) { setValue(value) {
@ -252,10 +355,6 @@ class _ProfileSettings extends State<ProfileSettings>
request["IsEmailAlertRequired"] = this.emailAlert; request["IsEmailAlertRequired"] = this.emailAlert;
request["IsSMSAlertRequired"] = this.smsAlert; request["IsSMSAlertRequired"] = this.smsAlert;
request["PreferredLanguage"] = this.language.toString(); request["PreferredLanguage"] = this.language.toString();
authService.saveSettings(request).then((result) => { authService.saveSettings(request).then((result) => {AppToast.showSuccessToast(message: TranslationBase.of(context).profileUpdate), GifLoaderDialogUtils.hideDialog(context)});
AppToast.showSuccessToast(
message: TranslationBase.of(context).profileUpdate),
GifLoaderDialogUtils.hideDialog(context)
});
} }
} }

@ -1,7 +1,9 @@
import 'package:diplomaticquarterapp/config/config.dart'; import 'package:diplomaticquarterapp/config/config.dart';
import 'package:diplomaticquarterapp/pages/settings/general_setting.dart'; import 'package:diplomaticquarterapp/pages/settings/general_setting.dart';
import 'package:diplomaticquarterapp/pages/settings/profile_setting.dart'; import 'package:diplomaticquarterapp/pages/settings/profile_setting.dart';
import 'package:diplomaticquarterapp/theme/colors.dart';
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart'; import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
import 'package:diplomaticquarterapp/widgets/others/arrow_back.dart'; import 'package:diplomaticquarterapp/widgets/others/arrow_back.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@ -9,6 +11,7 @@ class Settings extends StatefulWidget {
final int type; final int type;
Settings({this.type = 0}); Settings({this.type = 0});
@override @override
_Settings createState() => _Settings(); _Settings createState() => _Settings();
} }
@ -18,8 +21,7 @@ class _Settings extends State<Settings> with TickerProviderStateMixin {
@override @override
void initState() { void initState() {
_tabController = _tabController = new TabController(length: 2, vsync: this, initialIndex: widget.type);
new TabController(length: 2, vsync: this, initialIndex: widget.type);
if (widget.type == 1) { if (widget.type == 1) {
_tabController.animateTo(1); _tabController.animateTo(1);
@ -31,24 +33,25 @@ class _Settings extends State<Settings> with TickerProviderStateMixin {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
AppGlobal.context = context; AppGlobal.context = context;
return Scaffold( return AppScaffold(
appBar: AppBar( isShowAppBar: false,
actions: [ isShowDecPage: false,
IconButton( showNewAppBarTitle: true,
icon: Icon(Icons.info, color: Colors.white), showNewAppBar: true,
onPressed: () { appBarTitle: TranslationBase.of(context).settings,
//openInfoPage() backgroundColor: Color(0xFFF7F7F7),
}, body: Column(
) children: [
], TabBar(
bottom: TabBar(
// isScrollable: true, // isScrollable: true,
indicatorWeight: 5.0, indicatorWeight: 3.0,
//indicatorSize: TabBarIndicatorSize.label, //indicatorSize: TabBarIndicatorSize.label,
// indicatorSize: TabBarIndicatorSize.tab, // indicatorSize: TabBarIndicatorSize.tab,
indicatorColor: Theme.of(context).primaryColor, indicatorColor: CustomColors.accentColor,
labelColor: Colors.black,
unselectedLabelColor: CustomColors.grey,
// labelColor: Theme.of(context).primaryColor, // labelColor: Theme.of(context).primaryColor,
tabs: [ tabs: [
Tab(text: TranslationBase.of(context).general), Tab(text: TranslationBase.of(context).general),
@ -58,18 +61,17 @@ class _Settings extends State<Settings> with TickerProviderStateMixin {
], ],
controller: _tabController, controller: _tabController,
), ),
title: Text(TranslationBase.of(context).settings, Expanded(
style: TextStyle(color: Colors.white)), child: TabBarView(
leading: Builder(
builder: (BuildContext context) {
return ArrowBack();
},
),
),
body: TabBarView(
physics: NeverScrollableScrollPhysics(), physics: NeverScrollableScrollPhysics(),
children: [GeneralSettings(), ProfileSettings()], children: [
GeneralSettings(),
ProfileSettings(),
],
controller: _tabController), controller: _tabController),
),
],
),
); );
} }
} }

@ -2361,6 +2361,9 @@ class TranslationBase {
String get selectSlot => localizedValues["selectSlot"][locale.languageCode]; String get selectSlot => localizedValues["selectSlot"][locale.languageCode];
String get selectLanguage => localizedValues["selectLanguage"][locale.languageCode];
String get recAlert => localizedValues["recAlert"][locale.languageCode];
} }
class TranslationBaseDelegate extends LocalizationsDelegate<TranslationBase> { class TranslationBaseDelegate extends LocalizationsDelegate<TranslationBase> {

@ -1,69 +1,52 @@
import 'package:flutter/material.dart'; // import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_charts/charts.dart'; // import 'package:syncfusion_flutter_charts/charts.dart';
import 'package:syncfusion_flutter_charts/sparkcharts.dart'; // import 'package:syncfusion_flutter_charts/sparkcharts.dart';
//
class SyncFuChart extends StatelessWidget { // class SyncFuChart extends StatelessWidget {
// List<_SalesData> data = [
List<_SalesData> data = [ // _SalesData('Jan', 35),
_SalesData('Jan', 35), // _SalesData('Feb', 28),
_SalesData('Feb', 28), // _SalesData('Mar', 34),
_SalesData('Mar', 34), // _SalesData('Apr', 32),
_SalesData('Apr', 32), // _SalesData('May', 40),
_SalesData('May', 40), // ];
]; //
// @override
@override // Widget build(BuildContext context) {
Widget build(BuildContext context) { // return Scaffold(
return Scaffold( // body: Column(
appBar: AppBar( // children: [
title: const Text('Syncfusion Flutter chart'), // //Initialize the chart widget
), // SfCartesianChart(
body: Column( //
children: [ // primaryXAxis: CategoryAxis(),
//Initialize the chart widget // primaryYAxis: CategoryAxis(minimum: 28),
SfCartesianChart( // // Chart title
primaryXAxis: CategoryAxis(), // title: ChartTitle(text: 'Half yearly sales analysis'),
// Chart title // // Enable legend
title: ChartTitle(text: 'Half yearly sales analysis'), // legend: Legend(isVisible: true),
// Enable legend // // Enable tooltip
legend: Legend(isVisible: true), // tooltipBehavior: TooltipBehavior(enable: true),
// Enable tooltip // series: <ChartSeries<_SalesData, String>>[
tooltipBehavior: TooltipBehavior(enable: true), // LineSeries<_SalesData, String>(
series: <ChartSeries<_SalesData, String>>[ // dataSource: data,
LineSeries<_SalesData, String>( // xValueMapper: (_SalesData sales, _) => sales.year,
dataSource: data, // yValueMapper: (_SalesData sales, _) => sales.sales,
xValueMapper: (_SalesData sales, _) => sales.year, // name: 'Sales',
yValueMapper: (_SalesData sales, _) => sales.sales, // // Enable data label
name: 'Sales', // dataLabelSettings: DataLabelSettings(isVisible: true),
// Enable data label // ),
dataLabelSettings: DataLabelSettings(isVisible: true)) // ],
]), // ),
Expanded( // ],
child: Padding( // ),
padding: const EdgeInsets.all(8.0), // );
//Initialize the spark charts widget // }
child: SfSparkLineChart.custom( // }
//Enable the trackball //
trackball: SparkChartTrackball(activationMode: SparkChartActivationMode.tap), // class _SalesData {
//Enable marker // _SalesData(this.year, this.sales);
marker: SparkChartMarker(displayMode: SparkChartMarkerDisplayMode.all), //
//Enable data label // final String year;
labelDisplayMode: SparkChartLabelDisplayMode.all, // final double sales;
xValueMapper: (int index) => data[index].year, // }
yValueMapper: (int index) => data[index].sales,
dataCount: 5,
),
),
)
],
),
);
}
}
class _SalesData {
_SalesData(this.year, this.sales);
final String year;
final double sales;
}

@ -104,7 +104,7 @@ dependencies:
# Calendar # Calendar
# table_calendar: ^2.3.0 # table_calendar: ^2.3.0
syncfusion_flutter_calendar: ^18.4.49 syncfusion_flutter_calendar: ^18.4.49
syncfusion_flutter_charts: any # syncfusion_flutter_charts: any
# SVG Images # SVG Images
flutter_svg: ^0.18.0 flutter_svg: ^0.18.0

Loading…
Cancel
Save