Code Monkey home page Code Monkey logo

flutter-todo-list's People

Contributors

stephenjfox avatar

Watchers

 avatar  avatar

flutter-todo-list's Issues

Separate "Active" and "Completed" views

Implement a visual representation of the different states of a to-do list.
Leaving all the to-do's visible all of the time is visually unpleasant.

Inspired by a code snippet from the Vue.js TodoMVC example

Code snippet:

var filters = {
		all: function (todos) {
			return todos;
		},
		active: function (todos) {
			return todos.filter(function (todo) {
				return !todo.completed;
			});
		},
		completed: function (todos) {
			return todos.filter(function (todo) {
				return todo.completed;
			});
		}
	};

Don't copy on delete

It's a crappy feature, having road tested it.

Instead, as a modification, present a toast-like prompt to save the deleted text to clipboard

Seemingly duplicate entries

Creating a To-Do with trailing spaces looks like a visual duplicate of one without trailing space.

Steps to recreate:

  1. Use a keyboard that auto-insert space after text auto-complete
  2. Open the "Create Todo" dialog
  3. Type out a simple item (i.e "workout ")
  4. Repeat 2 and 3, but make sure there are no trailing spaces

These todo list items will look the same, but one has a trailing space.

  • Because the entries are stored in a hash map, the entries are technically different.

Proposed Fix:

  • Trim the trailing space, or...
  • Visually indicate the similarity

The former makes more sense (should tell the user that we won't make a duplicate). The latter would be more technically enriching

Add optional color code system

There is an app for iOS called Eulyses that allows custom formatting and color coding.
I like this idea.

As an initial draft of the feature, present the user with the choice of adding special highlighting or underlining or some indication by a character code that allows The Styling to be changed on a given to-do item.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.