profile_screen.dart

// Some code
import 'package:flutter/material.dart';

class ProfileScreen extends StatelessWidget {
  const ProfileScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Column(
      children: [
        Center(
          child: Text(
            'Profile screen',
            style: TextStyle(fontSize: 40),
          ),
        ),
      ],
    );;
  }
}

Last updated