Skip to content

Commit

Permalink
Updated example
Browse files Browse the repository at this point in the history
  • Loading branch information
Darwin Morocho committed Jun 5, 2021
1 parent eea4620 commit b797080
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
Expand Down
2 changes: 2 additions & 0 deletions facebook_auth/example/lib/pages/splash/widgets/patreons.dart
Original file line number Diff line number Diff line change
@@ -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(
Expand Down

0 comments on commit b797080

Please sign in to comment.