@@ -57,8 +57,7 @@ class _MailPageState extends State<MailPage> {
5757 children: < Widget > [
5858 Showcase (
5959 key: _one,
60- title: 'Menu' ,
61- description: 'Click here to see menu options' ,
60+ description: 'Tap to see menu options' ,
6261 child: Icon (
6362 Icons .menu,
6463 color: Colors .black45,
@@ -80,7 +79,7 @@ class _MailPageState extends State<MailPage> {
8079 Showcase (
8180 key: _two,
8281 title: 'Profile' ,
83- description: 'Click here to go to your Profile ' ,
82+ description: 'Tap to see profile ' ,
8483 showcaseBackgroundColor : Colors .blueAccent,
8584 textColor: Colors .white,
8685 shapeBorder: CircleBorder (),
@@ -118,12 +117,14 @@ class _MailPageState extends State<MailPage> {
118117 ),
119118 ],
120119 ),
120+
121+ Padding (padding: EdgeInsets .only (top: 8 )),
122+
121123 Container (
122- padding: const EdgeInsets .symmetric (vertical: 10 ),
124+ padding: const EdgeInsets .symmetric (vertical: 8 ),
123125 child: Showcase (
124126 key: _three,
125- title: 'Mail' ,
126- description: 'Click here to check mail' ,
127+ description: 'Tap to check mail' ,
127128 child: Container (
128129 padding: const EdgeInsets .only (left: 6 , right: 16 ),
129130 child: Row (
@@ -142,8 +143,8 @@ class _MailPageState extends State<MailPage> {
142143 crossAxisAlignment: CrossAxisAlignment .start,
143144 children: < Widget > [
144145 Container (
145- width: 40 ,
146- height: 40 ,
146+ width: 45 ,
147+ height: 45 ,
147148 decoration: BoxDecoration (
148149 shape: BoxShape .circle,
149150 color: Colors .blue[200 ],
@@ -164,8 +165,8 @@ class _MailPageState extends State<MailPage> {
164165 child: Container (
165166 margin: const EdgeInsets .all (10 ),
166167 child: Container (
167- width: 40 ,
168- height: 40 ,
168+ width: 45 ,
169+ height: 45 ,
169170 decoration: BoxDecoration (
170171 shape: BoxShape .circle,
171172 color: Colors .blue[200 ],
@@ -176,6 +177,7 @@ class _MailPageState extends State<MailPage> {
176177 ),
177178 ),
178179 ),
180+ Padding (padding: EdgeInsets .only (left: 8 )),
179181 Column (
180182 crossAxisAlignment: CrossAxisAlignment .start,
181183 children: < Widget > [
@@ -314,7 +316,7 @@ class MailTile extends StatelessWidget {
314316 @override
315317 Widget build (BuildContext context) {
316318 return Container (
317- padding: const EdgeInsets .only (left: 6 , right: 16 , top: 8 ),
319+ padding: const EdgeInsets .only (left: 6 , right: 16 , top: 8 ,bottom : 8 ),
318320 child: Row (
319321 crossAxisAlignment: CrossAxisAlignment .start,
320322 children: < Widget > [
@@ -324,8 +326,8 @@ class MailTile extends StatelessWidget {
324326 children: < Widget > [
325327 Container (
326328 margin: const EdgeInsets .all (10 ),
327- width: 40 ,
328- height: 40 ,
329+ width: 45 ,
330+ height: 45 ,
329331 decoration: BoxDecoration (
330332 shape: BoxShape .circle,
331333 color: Colors .blue[200 ],
@@ -334,6 +336,7 @@ class MailTile extends StatelessWidget {
334336 child: Text (mail.sender[0 ]),
335337 ),
336338 ),
339+ Padding (padding: EdgeInsets .only (left: 8 )),
337340 Column (
338341 crossAxisAlignment: CrossAxisAlignment .start,
339342 children: < Widget > [
0 commit comments