Skip to content

Commit

Permalink
Добавлен README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zloooy committed Aug 7, 2022
1 parent 98c1da6 commit 99bd028
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
# todo_app
# Done
Приложение для отслеживания задач.

A new Flutter project.
## Screenshots

## Getting Started
![task_list](./screenshots/task_list.png)
![task_edit](./screenshots/task_edit.png)

This project is a starting point for a Flutter application.
## Features

A few resources to get you started if this is your first Flutter project:
* Отображение списка задач, фильтрация несделанных задач.
* Изменение и удаление задач из списка задач через свайпы, добавление новой задачи через последний элемент списка.
* Подробный просмотр информации о задаче на экране редактирования задачи.
* Изменение, сохранение и удаление задачи на экране редактирования задачи.
* Хранение данных приложения оффлайн
* Синхронизация данных приложения с сервером при наличии указанного в файле *credentials.env* токена авторизации *TOKEN*

- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)

For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
## Work in progress
* Работа с Firebase
5 changes: 2 additions & 3 deletions lib/features/task_list/presentation/widgets/new_item.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:todo_app/core/presentation/edit_text.dart';

class AddTask extends StatefulWidget {
final void Function(String) onInputEnd;
Expand All @@ -27,14 +26,14 @@ class _AddTaskState extends State<AddTask> {
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(12),
padding: const EdgeInsets.symmetric(vertical: 12),
child: ListTile(
minLeadingWidth: 0,
leading: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Padding(
padding: const EdgeInsets.only(right: 15),
padding: const EdgeInsets.only(right: 4),
child: IconButton(
onPressed: () => _onInputEnd(_controller.text),
icon: Icon(Icons.add))),
Expand Down
Binary file added screenshots/task_edit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/task_list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 99bd028

Please sign in to comment.