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