This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| debugShowCheckedModeBanner: false, | |
| home: HomePage(), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| debugShowCheckedModeBanner: false, | |
| home: HomePage(), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Container( | |
| height: 500, | |
| margin: EdgeInsets.symmetric(horizontal: 10), | |
| child: Center(child: Text('Tasks Will be placed here!')), | |
| decoration: BoxDecoration( | |
| color: Colors.white, | |
| borderRadius: BorderRadius.circular(12), | |
| border: Border.all(color: !darkTheme ? Colors.black38 : Colors.white), | |
| boxShadow: [ | |
| BoxShadow( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| floatingActionButton: FloatingActionButton( | |
| onPressed: () {}, | |
| backgroundColor: Colors.white | |
| child: Icon( | |
| Icons.add, | |
| color: Colors.black | |
| size: 25, | |
| ), | |
| ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatefulWidget { | |
| @override | |
| _MyAppState createState() => _MyAppState(); | |
| } | |
| class _MyAppState extends State<MyApp> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SecondScreen extends StatelessWidget { | |
| final darkThemeSecondScreen; | |
| SecondScreen({this.darkThemeSecondScreen}); | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| body: SafeArea( | |
| child: Padding( | |
| padding: EdgeInsets.symmetric(horizontal: 10), | |
| child: Column( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FlatButton ( | |
| onPressed: () { | |
| Navigator.of(context).pop(); | |
| }, | |
| child: Icon(Icons.arrow_back, color: !darkThemeSecondScreen ? Colors.black : Colors.white, size: 30,), | |
| ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Text ( | |
| 'New Task', | |
| style: TextStyle( | |
| color: !darkThemeSecondScreen ? Colors.black : Colors.white, | |
| fontSize: 32, | |
| fontWeight: FontWeight.bold), | |
| ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TextField( | |
| controller: _myController, | |
| decoration: InputDecoration( | |
| hintText: 'Write Something...' | |
| ), | |
| ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Center( | |
| child: RaisedButton( | |
| onPressed: (){}, | |
| color: Colors.white, | |
| shape: StadiumBorder(), | |
| child: Text('Add', style: TextStyle(color: darkThemeSecondScreen ? Colors.black : null),), | |
| elevation: 3, | |
| ), | |
| ) |
OlderNewer