Created new task screen
This commit is contained in:
parent
50ae7d866a
commit
4f450ade30
3 changed files with 10 additions and 2 deletions
|
|
@ -1,5 +1,3 @@
|
|||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||
|
||||
|
|
|
|||
10
lib/src/screens/new-task-screen.dart
Normal file
10
lib/src/screens/new-task-screen.dart
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class NewTaskScreen extends StatefulWidget {
|
||||
@override
|
||||
State<NewTaskScreen> createState() => _NewTaskScreenState();
|
||||
}
|
||||
|
||||
class _NewTaskScreenState extends State<NewTaskScreen> {
|
||||
Widget build(BuildContext context) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue