nepali_calendar_axios 1.0.0 nepali_calendar_axios: ^1.0.0 copied to clipboard
A Flutter package for creating and displaying beautiful Nepali calendars.
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:nepali_calendar_axios/nepali_calendar_axios.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
TextEditingController startcontroller = TextEditingController();
TextEditingController endDateController = TextEditingController();
TextEditingController startDateController = TextEditingController();
String? date;
int? selectedDateId;
int? endselectedDateId;
String url = "https://demo79.nivid.app/";
@override
void initState() {
Get.put(CalendarController(url));
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Calendar(
baseUrl: url,
dateController: startcontroller,
themeColor: const Color(0xFF29ABE2),
calendarLblText: "From Date",
border: const OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(12))),
// ignore: non_constant_identifier_names
onSelectedDateId: (DateId) {
setState(() {
selectedDateId = DateId;
});
update();
},
),
const SizedBox(height: 20.0),
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
SizedBox(
width: 150,
child: Calendar(
baseUrl: url,
themeColor: const Color(0xFF29ABE2),
dateController: startDateController,
border: InputBorder.none,
filled: true,
fillColor: Colors.blueGrey[50],
hintText: "Start Date",
calendarLblText: "From Date",
shouldPreventPastDateSelection: true,
//Icons.Calenbar_month is not appear, use others
calendarIcon: Icons.calendar_month,
style: const TextStyle(fontSize: 14),
hintStyle: TextStyle(color: Colors.blueGrey[400]),
labelStyle: TextStyle(
color: Colors.blueGrey[400],
),
onSelectedDateId: (dateId) {},
)),
SizedBox(
width: 150,
child: Calendar(
baseUrl: url,
themeColor: const Color(0xFF29ABE2),
dateController: endDateController,
border: InputBorder.none,
filled: true,
readOnly: true,
fillColor: Colors.blueGrey[50],
hintText: "End Date",
calendarLblText: "To Date",
calendarIcon: Icons.calendar_today_rounded,
hintStyle: TextStyle(color: Colors.blueGrey[400]),
labelStyle: TextStyle(color: Colors.blueGrey[400]),
onSelectedDateId: (dateId) {},
))
],
),
],
),
),
);
}
update() {
// ignore: avoid_print
print("Axios");
}
}