Compare commits
No commits in common. "d0440b221fe0f923260fd1ef8083b637d19d329c" and "43f95cb3218f841c03cf06f839ea47c8fa405c0e" have entirely different histories.
d0440b221f
...
43f95cb321
@ -18,10 +18,7 @@ A Reminder based on todo.txt synced via nextcloud
|
|||||||
- [ ] make application-settings
|
- [ ] make application-settings
|
||||||
- [ ] store/load settings
|
- [ ] store/load settings
|
||||||
- [ ] setting for number of days into the future
|
- [ ] setting for number of days into the future
|
||||||
- [ ] theme
|
- [ ] theme (light/dark mode, system theme)
|
||||||
- [x] light/dark mode
|
|
||||||
- [ ] color theme by system colors
|
|
||||||
- [ ] own primary/secondary color theme
|
|
||||||
- [ ] fancy pop-animation & sound for the checkbox
|
- [ ] fancy pop-animation & sound for the checkbox
|
||||||
|
|
||||||
## Current looks:
|
## Current looks:
|
||||||
@ -38,7 +35,3 @@ A Reminder based on todo.txt synced via nextcloud
|
|||||||
|
|
||||||
### Complex repeat patterns
|
### Complex repeat patterns
|
||||||
![](img/2023-01-10_repeat_patterns.png)
|
![](img/2023-01-10_repeat_patterns.png)
|
||||||
|
|
||||||
### Light/Dark theme
|
|
||||||
![](img/2023-01-13_theme_light.png)
|
|
||||||
![](img/2023-01-13_theme_dark.png)
|
|
Binary file not shown.
Before Width: | Height: | Size: 39 KiB |
Binary file not shown.
Before Width: | Height: | Size: 40 KiB |
@ -1,8 +1,6 @@
|
|||||||
import 'package:date_field/date_field.dart';
|
import 'package:date_field/date_field.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:gap/gap.dart';
|
|
||||||
import 'package:nextcloud_reminder/repeating_task.dart';
|
import 'package:nextcloud_reminder/repeating_task.dart';
|
||||||
import 'package:nextcloud_reminder/types/repeat.dart';
|
import 'package:nextcloud_reminder/types/repeat.dart';
|
||||||
import 'package:nextcloud_reminder/types/tasks.dart';
|
import 'package:nextcloud_reminder/types/tasks.dart';
|
||||||
@ -37,60 +35,29 @@ class _AddTaskWidgetState extends State<AddTaskWidget> {
|
|||||||
|
|
||||||
String _prettyInterval(DateInterval d) {
|
String _prettyInterval(DateInterval d) {
|
||||||
switch (d) {
|
switch (d) {
|
||||||
case DateInterval.daily: return "day";
|
default:
|
||||||
case DateInterval.weekly: return "week";
|
return d.toString();
|
||||||
case DateInterval.monthly: return "month";
|
|
||||||
case DateInterval.monday: return "monday";
|
|
||||||
case DateInterval.tuesday: return "tuesday";
|
|
||||||
case DateInterval.wednesday: return "wednesday";
|
|
||||||
case DateInterval.thursday: return "thursday";
|
|
||||||
case DateInterval.friday: return "friday";
|
|
||||||
case DateInterval.saturday: return "saturday";
|
|
||||||
case DateInterval.sunday: return "sunday";
|
|
||||||
case DateInterval.dayOfMonth: return "day of the month";
|
|
||||||
case DateInterval.dayOfYear: return "day of the year";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _repeatBuilder(BuildContext context, Tuple2<TextEditingController,ValueNotifier<DateInterval>> data) {
|
Widget _repeatBuilder(BuildContext context, Tuple2<TextEditingController,ValueNotifier<DateInterval>> data) {
|
||||||
return IntrinsicHeight(child: Row(
|
return Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
Text("Repeat every " ),
|
||||||
width: 200,
|
Expanded(
|
||||||
|
flex: 1,
|
||||||
child: TextFormField(
|
child: TextFormField(
|
||||||
controller: data.item1,
|
controller: data.item1,
|
||||||
decoration: InputDecoration(
|
decoration: const InputDecoration(
|
||||||
prefix: const Text("Repeat every "),
|
hintText: "1",
|
||||||
suffix: () {
|
|
||||||
if (data.item1.value.text.isEmpty) return const Text("");
|
|
||||||
switch (data.item1.value.text.substring(data.item1.value.text.length - 1)) {
|
|
||||||
case "1":
|
|
||||||
return const Text("st");
|
|
||||||
case "2":
|
|
||||||
return const Text("nd");
|
|
||||||
case "3":
|
|
||||||
return const Text("rd");
|
|
||||||
default:
|
|
||||||
return const Text("th");
|
|
||||||
}}(),
|
|
||||||
border: const OutlineInputBorder()
|
|
||||||
),
|
),
|
||||||
textAlign: TextAlign.end,
|
|
||||||
keyboardType: const TextInputType.numberWithOptions(signed: false, decimal: false),
|
keyboardType: const TextInputType.numberWithOptions(signed: false, decimal: false),
|
||||||
inputFormatters: [FilteringTextInputFormatter.digitsOnly],
|
inputFormatters: [FilteringTextInputFormatter.digitsOnly],
|
||||||
onChanged: (_) {setState(() {
|
|
||||||
//nothing just rerender.
|
|
||||||
});},
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const Gap(4),
|
|
||||||
Expanded(
|
Expanded(
|
||||||
//padding: const EdgeInsets.only(left: 30, right: 20),
|
flex: 3,
|
||||||
child: DropdownButtonFormField<DateInterval>(
|
child: DropdownButton<DateInterval>(
|
||||||
decoration: const InputDecoration(
|
|
||||||
border: OutlineInputBorder(),
|
|
||||||
),
|
|
||||||
items: DateInterval.values.map((v) => DropdownMenuItem(value: v, child: Text(_prettyInterval(v)))).toList(),
|
items: DateInterval.values.map((v) => DropdownMenuItem(value: v, child: Text(_prettyInterval(v)))).toList(),
|
||||||
onChanged: (v) => setState(() {
|
onChanged: (v) => setState(() {
|
||||||
data.item2.value = v ?? data.item2.value;
|
data.item2.value = v ?? data.item2.value;
|
||||||
@ -98,21 +65,11 @@ class _AddTaskWidgetState extends State<AddTaskWidget> {
|
|||||||
value: data.item2.value,
|
value: data.item2.value,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
PreferredSize(
|
IconButton(onPressed: () => setState(() {
|
||||||
preferredSize: const Size.square(40),
|
|
||||||
child: IconButton(
|
|
||||||
alignment: Alignment.topCenter,
|
|
||||||
onPressed: () => setState(() {
|
|
||||||
_repeatEveryController.remove(data);
|
_repeatEveryController.remove(data);
|
||||||
}),
|
}), icon: Icon(Icons.remove, color: Theme.of(context).errorColor,)),
|
||||||
icon: Icon(Icons.remove, color: Theme.of(context).errorColor,)
|
|
||||||
)),
|
|
||||||
],
|
],
|
||||||
));
|
);
|
||||||
}
|
|
||||||
|
|
||||||
Widget _addPadding(Widget w) {
|
|
||||||
return Padding(padding: EdgeInsets.all(4), child: w);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@ -126,7 +83,7 @@ class _AddTaskWidgetState extends State<AddTaskWidget> {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
_addPadding(TextFormField(
|
TextFormField(
|
||||||
// The validator receives the text that the user has entered.
|
// The validator receives the text that the user has entered.
|
||||||
validator: (value) {
|
validator: (value) {
|
||||||
if (value == null || value.isEmpty) {
|
if (value == null || value.isEmpty) {
|
||||||
@ -134,14 +91,13 @@ class _AddTaskWidgetState extends State<AddTaskWidget> {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
autofocus: true,
|
|
||||||
controller: _titleController,
|
controller: _titleController,
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
labelText: "Taskname"
|
labelText: "Taskname"
|
||||||
),
|
),
|
||||||
)),
|
),
|
||||||
|
|
||||||
_addPadding(DateTimeField(
|
DateTimeField(
|
||||||
onDateSelected: (v) => setState(() { _beginDate = v; }),
|
onDateSelected: (v) => setState(() { _beginDate = v; }),
|
||||||
selectedDate: _beginDate,
|
selectedDate: _beginDate,
|
||||||
decoration: const InputDecoration(
|
decoration: const InputDecoration(
|
||||||
@ -149,16 +105,15 @@ class _AddTaskWidgetState extends State<AddTaskWidget> {
|
|||||||
labelText: "Begin"
|
labelText: "Begin"
|
||||||
),
|
),
|
||||||
mode: DateTimeFieldPickerMode.date,
|
mode: DateTimeFieldPickerMode.date,
|
||||||
)),
|
),
|
||||||
] + _repeatEveryController.map((c) => _addPadding(_repeatBuilder(context,c))).toList()
|
] + _repeatEveryController.map((c) => _repeatBuilder(context,c)).toList()
|
||||||
+ [
|
+ [
|
||||||
_addPadding(_addPadding(Row(
|
|
||||||
children: [
|
|
||||||
ElevatedButton(onPressed: () => setState(() {
|
ElevatedButton(onPressed: () => setState(() {
|
||||||
_repeatEveryController.add(_emptyRepetition());
|
_repeatEveryController.add(_emptyRepetition());
|
||||||
}), child: const Text("add repetition")),
|
}), child: const Text("add repetition")),
|
||||||
Expanded(child: Container()),
|
Padding(
|
||||||
ElevatedButton(
|
padding: const EdgeInsets.symmetric(vertical: 16.0),
|
||||||
|
child: ElevatedButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
// Validate returns true if the form is valid, or false otherwise.
|
// Validate returns true if the form is valid, or false otherwise.
|
||||||
if (_formKey.currentState!.validate()) {
|
if (_formKey.currentState!.validate()) {
|
||||||
@ -182,8 +137,7 @@ class _AddTaskWidgetState extends State<AddTaskWidget> {
|
|||||||
},
|
},
|
||||||
child: const Text('Submit'),
|
child: const Text('Submit'),
|
||||||
),
|
),
|
||||||
]
|
),
|
||||||
))),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@ -1,65 +1,23 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:intl/date_symbol_data_local.dart';
|
|
||||||
import 'package:intl/intl_standalone.dart';
|
|
||||||
import 'package:nextcloud_reminder/homescreen.dart';
|
import 'package:nextcloud_reminder/homescreen.dart';
|
||||||
|
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
findSystemLocale().then((value) =>
|
runApp(const TodoTxtReminderApp());
|
||||||
initializeDateFormatting(value).then((_) =>
|
|
||||||
runApp(const TodoTxtReminderApp())
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class TodoTxtReminderApp extends StatelessWidget {
|
class TodoTxtReminderApp extends StatelessWidget {
|
||||||
const TodoTxtReminderApp({super.key});
|
const TodoTxtReminderApp({super.key});
|
||||||
static const primaryColor = Colors.pink;
|
|
||||||
static const secondaryColor = Colors.amber;
|
|
||||||
|
|
||||||
getInteractColor(Color a, Color b) {
|
|
||||||
return (Set<MaterialState> states) {
|
|
||||||
const Set<MaterialState> interactiveStates = <MaterialState>{
|
|
||||||
MaterialState.pressed,
|
|
||||||
MaterialState.hovered,
|
|
||||||
MaterialState.focused,
|
|
||||||
};
|
|
||||||
if (states.any(interactiveStates.contains)) {
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
return a;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
Color getColor(Set<MaterialState> states) {
|
|
||||||
return getInteractColor(primaryColor, secondaryColor)(states);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This widget is the root of your application.
|
// This widget is the root of your application.
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
const inputDecorationTheme = InputDecorationTheme(border: OutlineInputBorder(), focusColor: secondaryColor);
|
|
||||||
|
|
||||||
return MaterialApp(
|
return MaterialApp(
|
||||||
title: 'Nextcloud Reminder',
|
title: 'Nextcloud Reminder',
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
brightness: Brightness.light,
|
// This is the theme of your application.
|
||||||
colorScheme: ThemeData.light().colorScheme.copyWith(primary: primaryColor, secondary: secondaryColor, background: primaryColor.shade50),
|
primarySwatch: Colors.blue,
|
||||||
inputDecorationTheme: inputDecorationTheme,
|
|
||||||
checkboxTheme: ThemeData.light().checkboxTheme.copyWith(
|
|
||||||
fillColor: MaterialStateProperty.resolveWith(getColor),
|
|
||||||
checkColor: MaterialStateProperty.resolveWith(getInteractColor(Colors.white,Colors.black))
|
|
||||||
),
|
),
|
||||||
),
|
|
||||||
darkTheme: ThemeData(
|
|
||||||
brightness: Brightness.dark,
|
|
||||||
colorScheme: ThemeData.dark().colorScheme.copyWith(primary: primaryColor, secondary: secondaryColor, background: primaryColor.shade500.withAlpha(32)),
|
|
||||||
inputDecorationTheme: inputDecorationTheme,
|
|
||||||
checkboxTheme: ThemeData.dark().checkboxTheme.copyWith(
|
|
||||||
fillColor: MaterialStateProperty.resolveWith(getColor),
|
|
||||||
checkColor: MaterialStateProperty.resolveWith(getInteractColor(Colors.white,Colors.black))
|
|
||||||
),
|
|
||||||
),
|
|
||||||
themeMode: ThemeMode.system,
|
|
||||||
home: const HomeWidget(title: 'todo.txt reminder'),
|
home: const HomeWidget(title: 'todo.txt reminder'),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -33,9 +33,7 @@ class _RepeatingTaskState extends State<RepeatingTask> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Container(
|
return Container(
|
||||||
decoration: BoxDecoration(border: Border(
|
decoration: const BoxDecoration(border: Border(bottom: BorderSide(),)),
|
||||||
bottom: BorderSide(color: Theme.of(context).colorScheme.background, width: 1),
|
|
||||||
),),
|
|
||||||
margin: const EdgeInsets.all(0.0),
|
margin: const EdgeInsets.all(0.0),
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
import 'dart:math';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
import 'package:nextcloud_reminder/repeating_task.dart';
|
import 'package:nextcloud_reminder/repeating_task.dart';
|
||||||
import 'package:nextcloud_reminder/types/tasks.dart';
|
import 'package:nextcloud_reminder/types/tasks.dart';
|
||||||
|
|
||||||
@ -29,7 +26,6 @@ class ScrollTable extends StatefulWidget {
|
|||||||
|
|
||||||
class _ScrollTableState extends State<ScrollTable> {
|
class _ScrollTableState extends State<ScrollTable> {
|
||||||
final List<RepeatingTask> _content = [];
|
final List<RepeatingTask> _content = [];
|
||||||
final _contentStart = DateTime.now();
|
|
||||||
|
|
||||||
addTask(RepeatingTask task) {
|
addTask(RepeatingTask task) {
|
||||||
setState(() {
|
setState(() {
|
||||||
@ -56,7 +52,7 @@ class _ScrollTableState extends State<ScrollTable> {
|
|||||||
children: [ Text(t.task.title),
|
children: [ Text(t.task.title),
|
||||||
Text("Projects: ${t.task.projects.isEmpty ? "none" : t.task.projects.join(", ")}"),
|
Text("Projects: ${t.task.projects.isEmpty ? "none" : t.task.projects.join(", ")}"),
|
||||||
Text("Contexts: ${t.task.contexts.isEmpty ? "none" : t.task.contexts.join(", ")}"),
|
Text("Contexts: ${t.task.contexts.isEmpty ? "none" : t.task.contexts.join(", ")}"),
|
||||||
Padding(padding: const EdgeInsets.only(top: 16),
|
Padding(padding: EdgeInsets.only(top: 16),
|
||||||
child: Text(t.task.meta.isEmpty ? "" : "Meta:", style: Theme.of(context).textTheme.bodyLarge,)
|
child: Text(t.task.meta.isEmpty ? "" : "Meta:", style: Theme.of(context).textTheme.bodyLarge,)
|
||||||
),
|
),
|
||||||
] + List.of(t.task.meta.entries.map((e) => Text("${e.key}: ${e.value}"))),
|
] + List.of(t.task.meta.entries.map((e) => Text("${e.key}: ${e.value}"))),
|
||||||
@ -79,51 +75,19 @@ class _ScrollTableState extends State<ScrollTable> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget _todoHeader(BuildContext context) {
|
|
||||||
return Container(
|
|
||||||
width: 200,
|
|
||||||
height: 60,
|
|
||||||
alignment: Alignment.bottomLeft,
|
|
||||||
padding: const EdgeInsets.only(left: 8, right: 8, bottom: 12),
|
|
||||||
decoration: BoxDecoration(color: Theme.of(context).colorScheme.background),
|
|
||||||
child: Text("TODO", style: Theme.of(context).textTheme.titleSmall?.copyWith(color: Theme.of(context).colorScheme.primary),),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _datesHeader(BuildContext context) {
|
|
||||||
return Row(
|
|
||||||
children: List.generate(10, (i) => Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
alignment: Alignment.bottomCenter,
|
|
||||||
padding: const EdgeInsets.only(left: 8, right: 8, bottom: 16),
|
|
||||||
decoration: BoxDecoration(color: Theme.of(context).colorScheme.background),
|
|
||||||
child: Transform.rotate(angle: -pi/3,
|
|
||||||
child: Text(DateFormat.Md().format(_contentStart.add(Duration(days: i))),
|
|
||||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(color: Theme.of(context).colorScheme.primary),),
|
|
||||||
)
|
|
||||||
))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
List<Widget> _buildTitles(BuildContext context) {
|
List<Widget> _buildTitles(BuildContext context) {
|
||||||
return List<Widget>.from(_content.map((RepeatingTask t) =>
|
return List<Widget>.from(_content.map((RepeatingTask t) =>
|
||||||
Container(
|
Container(
|
||||||
alignment: Alignment.centerLeft,
|
alignment: Alignment.centerLeft,
|
||||||
width: 200.0,
|
width: 150.0,
|
||||||
height: 60.0,
|
height: 60.0,
|
||||||
margin: const EdgeInsets.only(top: 1),
|
margin: const EdgeInsets.only(left: 4, top: 1),
|
||||||
decoration: BoxDecoration(color: Theme.of(context).canvasColor, border: Border(bottom: BorderSide(color: Theme.of(context).colorScheme.background, width: 1),)),
|
decoration: const BoxDecoration(color: Colors.white, border: Border(bottom: BorderSide(),)),
|
||||||
child: SizedBox(width: 200, child: TextButton(
|
child: TextButton(
|
||||||
onPressed: () => _showDetailsAndRemoveTask(context,t),
|
onPressed: () => _showDetailsAndRemoveTask(context,t),
|
||||||
style: const ButtonStyle(alignment: AlignmentDirectional.centerStart),
|
|
||||||
child: Text(t.task.title,
|
child: Text(t.task.title,
|
||||||
softWrap: true,
|
style: Theme.of(context).textTheme.labelMedium),
|
||||||
textAlign: TextAlign.left,
|
|
||||||
style: Theme.of(context).textTheme.titleSmall,
|
|
||||||
)
|
)
|
||||||
)),
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -133,19 +97,19 @@ class _ScrollTableState extends State<ScrollTable> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SingleChildScrollView(
|
return SingleChildScrollView(
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Column(
|
Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
//TODO: Text in container wie bei _buildTitles oben und width/height/margin/etc. festnageln.
|
//TODO: Text in container wie bei _buildTitles oben und width/height/margin/etc. festnageln.
|
||||||
children: List<Widget>.from([_todoHeader(context)]) + _buildTitles(context),
|
children: List<Widget>.from([Text("Todo", style: Theme.of(context).dataTableTheme.headingTextStyle,)]) + _buildTitles(context),
|
||||||
),
|
),
|
||||||
Flexible(
|
Flexible(
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
scrollDirection: Axis.horizontal,
|
scrollDirection: Axis.horizontal,
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [_datesHeader(context)] + List<Widget>.from(_content),
|
children: List<Widget>.from([Text("header ... date, date, date .. fancy turned 60 degrees", style: Theme.of(context).dataTableTheme.headingTextStyle)]) + List<Widget>.from(_content),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@ -26,9 +26,7 @@ class _TaskItemState extends State<TaskItem>{
|
|||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
width: 60.0,
|
width: 60.0,
|
||||||
height: 60.0,
|
height: 60.0,
|
||||||
decoration: BoxDecoration(border: Border(
|
color: Colors.white,
|
||||||
left: BorderSide(color: Theme.of(context).colorScheme.background, width: 1)
|
|
||||||
),),
|
|
||||||
margin: const EdgeInsets.all(0.0),
|
margin: const EdgeInsets.all(0.0),
|
||||||
child: _done == null ? null : Checkbox(value: _done, onChanged: (newState) => setState(() {
|
child: _done == null ? null : Checkbox(value: _done, onChanged: (newState) => setState(() {
|
||||||
_done = newState!;
|
_done = newState!;
|
||||||
|
@ -100,15 +100,8 @@ packages:
|
|||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.2.2"
|
version: "0.2.2"
|
||||||
gap:
|
|
||||||
dependency: "direct main"
|
|
||||||
description:
|
|
||||||
name: gap
|
|
||||||
url: "https://pub.dartlang.org"
|
|
||||||
source: hosted
|
|
||||||
version: "2.0.1"
|
|
||||||
intl:
|
intl:
|
||||||
dependency: "direct main"
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: intl
|
name: intl
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
|
@ -42,8 +42,6 @@ dependencies:
|
|||||||
flutter_window_close: ^0.2.2
|
flutter_window_close: ^0.2.2
|
||||||
collection: ^1.16.0
|
collection: ^1.16.0
|
||||||
date_field: ^3.0.2
|
date_field: ^3.0.2
|
||||||
gap: ^2.0.1
|
|
||||||
intl: ^0.17.0
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
Loading…
Reference in New Issue
Block a user