Skip to content

Commit

Permalink
all screens done
Browse files Browse the repository at this point in the history
  • Loading branch information
mercyjae committed Sep 22, 2022
1 parent 66bcc28 commit 2022dff
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
34 changes: 27 additions & 7 deletions lib/screens/edit_note.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,47 @@ class EditNote extends StatelessWidget {
child:
Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
TextFormField(
cursorColor: Colors.orange,
maxLines: null,
style: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.w900,
color: Color(0xFF403B36),
),
cursorColor: Colors.black,
decoration: const InputDecoration(
border: InputBorder.none,
focusedBorder: UnderlineInputBorder(),
hintText: 'Title',
hintStyle: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w900,
color: Color(0xFF403B36),
),
),
inputFormatters: [
LengthLimitingTextInputFormatter(100),
],
),
TextFormField(
cursorColor: Colors.orange,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w700,
color: Color(0xFF403B36),
),

cursorColor: Colors.black,
maxLines: null,
decoration: const InputDecoration(
border: InputBorder.none,
focusedBorder: UnderlineInputBorder(),
hintText: 'Description',
hintStyle: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w700,
color: Color(0xFF403B36),
),

),
inputFormatters: [
LengthLimitingTextInputFormatter(100),
],
textAlign: TextAlign.justify,

),
]),
));
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/profile_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
appBar: AppBar(leading: const Icon(Icons.arrow_back,color: Color(0xFFF8EEE2),),
title: Text(
'NOTELY',
style: GoogleFonts.nunito(
Expand Down

0 comments on commit 2022dff

Please sign in to comment.