Skip to content

Commit 3fa99d1

Browse files
committed
beta 8
1 parent 1ff9d83 commit 3fa99d1

File tree

1 file changed

+29
-50
lines changed

1 file changed

+29
-50
lines changed

lib/bottom_sheets.dart

Lines changed: 29 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -252,56 +252,35 @@ class _BottomAppBarSheetState extends State<BottomAppBarSheet> with SingleTicker
252252
),
253253
),*/
254254
Material(
255-
child: GroovinExpansionTile(
256-
//defaultTrailingIconColor: Theme.of(context).primaryColor,
257-
title: Text(
258-
"Social",
259-
style: TextStyle(
260-
color: Theme.of(context).brightness == Brightness.light
261-
? Colors.black
262-
: Colors.white,
263-
),
264-
),
255+
child: Row(
256+
mainAxisAlignment: MainAxisAlignment.spaceBetween,
265257
children: <Widget>[
266-
Material(
267-
child: Row(
268-
mainAxisAlignment: MainAxisAlignment.spaceBetween,
269-
children: <Widget>[
270-
Padding(
271-
padding: const EdgeInsets.only(left: 8.0),
272-
child: IconButton(
273-
icon: Icon(GroovinMaterialIcons.xda),
274-
color: Colors.orange,
275-
onPressed: (){
276-
launch("https://forum.xda-developers.com/member.php?u=7646108");
277-
},
278-
),
279-
),
280-
IconButton(
281-
icon: Icon(GroovinMaterialIcons.twitter),
282-
color: Colors.blue,
283-
onPressed: (){
284-
launch("https:twitter.com/GroovinChipDev");
285-
},
286-
),
287-
IconButton(
288-
icon: Icon(GroovinMaterialIcons.discord),
289-
color: Colors.deepPurple[300],
290-
onPressed: (){
291-
launch("https://discord.gg/CFnBRue");
292-
},
293-
),
294-
Padding(
295-
padding: const EdgeInsets.only(right: 8.0),
296-
child: IconButton(
297-
icon: Icon(GroovinMaterialIcons.gmail),
298-
color: Colors.red,
299-
onPressed: (){
300-
launch("mailto:[email protected]");
301-
},
302-
),
303-
),
304-
],
258+
Padding(
259+
padding: const EdgeInsets.only(left: 16.0),
260+
child: Text("Contact: "),
261+
),
262+
IconButton(
263+
icon: Icon(GroovinMaterialIcons.twitter),
264+
color: Colors.blue,
265+
onPressed: (){
266+
launch("https:twitter.com/GroovinChipDev");
267+
},
268+
),
269+
IconButton(
270+
icon: Icon(GroovinMaterialIcons.discord),
271+
color: Colors.deepPurple[300],
272+
onPressed: (){
273+
launch("https://discord.gg/CFnBRue");
274+
},
275+
),
276+
Padding(
277+
padding: const EdgeInsets.only(right: 16.0),
278+
child: IconButton(
279+
icon: Icon(GroovinMaterialIcons.gmail),
280+
color: Colors.red,
281+
onPressed: (){
282+
launch("mailto:[email protected]");
283+
},
305284
),
306285
),
307286
],
@@ -324,7 +303,7 @@ class _BottomAppBarSheetState extends State<BottomAppBarSheet> with SingleTicker
324303
),
325304
),
326305
],
327-
)
306+
),
328307
],
329308
),
330309
),

0 commit comments

Comments
 (0)