TodoScreen
Learn to build our home page, which is a todo screen.
We'll cover the following...
In this lesson, we’ll build our TodoScreen
, which is where all the other widgets and screens we’ve built so far will be.
Implementation
Let’s look at the code below:
<?xml version="1.0" encoding="UTF-8"?> <Workspace version = "1.0"> <FileRef location = "group:Runner.xcodeproj"> </FileRef> </Workspace>
The todo screen
This is a Flutter widget that displays a list of todo items for a selected day. It has a Calendar
widget at the top that allows the user to select a day.
The list of todo items is updated based on the selected day. The todo items are displayed using the TodoTile
widget, ...