Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 728 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 728 Bytes

chinese_calendar

带有农历的日历

输入图片说明 输入图片说明 输入图片说明

Example

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(),
      body: Center(
        child: Container(
          child: CalendarView(
            initDateTime: DateTime.now(),
          ),
        ),
      ),
    );
  }
}