0 purchases
profile
Profile Package #
Profile package lets you add a beautiful UI in your Flutter apps.
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
profile: ^0.0.1
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:profile/profile.dart';
copied to clipboard
Example #
import 'package:flutter/material.dart';
import 'package:profile/profile.dart';
class AdminPage extends StatefulWidget {
const AdminPage({Key? key}) : super(key: key);
@override
State<AdminPage> createState() => _AdminPageState();
}
class _AdminPageState extends State<AdminPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Profile(
imageUrl: "https://images.unsplash.com/photo-1598618356794-eb1720430eb4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80",
name: "Shamim Miah",
website: "shamimmiah.com",
designation: "Project Manager | Flutter & Blockchain Developer",
email: "[email protected]",
phone_number: "01757736053",
),
));
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.