Skip to content

Commit

Permalink
call success but not alert with sound
Browse files Browse the repository at this point in the history
  • Loading branch information
redevrx committed Feb 8, 2021
1 parent 83b13da commit 04fb1cd
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions lib/Login/screen/login_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -230,30 +230,39 @@ class loginScreen extends StatelessWidget {
SizedBox(
height: 16.0,
),
Padding(
Container(
width: double.infinity,
padding: const EdgeInsets.symmetric(horizontal: 100.0),
child: Row(
children: [
InkWell(
onTap: () => loginBloc.add(onLoginWithGoogle()),
child: Container(
width: 42.0,
height: 42.0,
padding: const EdgeInsets.all(4.0),
child: ClipRRect(
child: Image.asset("assets/icons/google.png"),
child: Image.asset(
"assets/icons/google.png",
),
)),
),
SizedBox(
width: 32.0,
),
InkWell(
// onTap: () => loginBloc.add(onLoginWithFacebook()),
child: Container(
width: 42.0,
padding: const EdgeInsets.all(4.0),
child: ClipRRect(
child: Image.asset("assets/icons/facebook.png"),
)),
Expanded(
child: InkWell(
// onTap: () => loginBloc.add(onLoginWithFacebook()),
child: Container(
width: 42.0,
height: 42.0,
padding: const EdgeInsets.all(4.0),
child: ClipRRect(
child: Image.asset(
"assets/icons/facebook.png",
),
)),
),
),
],
),
Expand Down

0 comments on commit 04fb1cd

Please sign in to comment.