Flutter日期和时间

nc1teljy  于 2022-12-14  发布在  Flutter
关注(0)|答案(1)|浏览(117)

我试图为我的第一个应用程序创建一个do to list应用程序。到目前为止进展顺利,但我想在应用程序中添加日期和时间选择,我的问题开始了。有人能教我如何创建这个日期和时间选择器吗
如何创建好的日期选择器?

现在我用这个

DatePickerDialog(
            initialDate: DateTime(2022, 5, 5),
            firstDate: DateTime(2022 - 100, 4, 4),
            lastDate: DateTime(2022 + 100, 7, 7),
          )

但我不满意的结果,我认为你需要使用车轮,但idk如何使用它

cu6pst1q

cu6pst1q1#

DatePicker( 
   looping = (true or false) //your choice
   firstDate: DateTime(xxxx, yy, zz),
      lastDate: DateTime(xxxx, yy, zz),
      initialDate: DateTime(xxxx, yy, zz),
      dateFormat: "h:mm :a", 
      locale: DatePicker.localeFromString('en'),
      onChange: (DateTime newDate, _) => _selectedDate = newDate,
      pickerTheme: DateTimePickerTheme(
        itemTextStyle: TextStyle(color: Colors.green, fontSize: 19),
        dividerColor: Colors.red,
      ),

)

相关问题