INNER CODE UNIT · Dart

InviteFriend

mitesh77/Best-Flutter-UI-Templates · best_flutter_ui_templates/lib/invite_friend_screen.dart:4

class InviteFriend extends StatefulWidget {
  @override
  _InviteFriendState createState() => _InviteFriendState();
}

class _InviteFriendState extends State<InviteFriend> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    var brightness = MediaQuery.of(context).platformBrightness;
    bool isLightMode = brightness == Brightness.light;
    return Container(
      color: isLightMode ? AppTheme.white : AppTheme.nearlyBlack,
      child: SafeArea(

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…