diff --git a/facebook_auth/example/lib/pages/splash/widgets/login_view.dart b/facebook_auth/example/lib/pages/splash/widgets/login_view.dart index a5894cde..62a2fe03 100644 --- a/facebook_auth/example/lib/pages/splash/widgets/login_view.dart +++ b/facebook_auth/example/lib/pages/splash/widgets/login_view.dart @@ -31,7 +31,7 @@ class LoginView extends StatelessWidget { Text( "Welcome back!".toUpperCase(), style: GoogleFonts.chango( - fontSize: 30, + fontSize: 20, fontWeight: FontWeight.bold, color: Color(0xff29434e), ), diff --git a/facebook_auth/example/lib/pages/splash/widgets/patreons.dart b/facebook_auth/example/lib/pages/splash/widgets/patreons.dart index aa490543..f63204f5 100644 --- a/facebook_auth/example/lib/pages/splash/widgets/patreons.dart +++ b/facebook_auth/example/lib/pages/splash/widgets/patreons.dart @@ -1,11 +1,13 @@ import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.dart'; +import 'package:flutter/foundation.dart' show kIsWeb; class Patreons extends StatelessWidget { const Patreons({Key? key}) : super(key: key); @override Widget build(BuildContext context) { + if (!kIsWeb) return Container(); return ConstrainedBox( constraints: BoxConstraints(maxWidth: 1024), child: Container(