user_profile 0.1.17-nullsafety user_profile: ^0.1.17-nullsafety copied to clipboard
A shared library that is responsible for the user profile displayed on both apps.
import 'package:flutter/material.dart';
class UserProfileExample extends StatelessWidget {
const UserProfileExample({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
);
}
}