contactus 1.2.2 contactus: ^1.2.2 copied to clipboard
contactus is the package which helps the developers to add their contact information with ease.Developers can add many important details such as website, email, phone number, etc.
import 'package:contactus/contactus.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
bottomNavigationBar: ContactUsBottomAppBar(
companyName: 'Abhishek Doshi',
textColor: Colors.white,
backgroundColor: Colors.teal.shade300,
email: 'adoshi26.ad@gmail.com',
// textFont: 'Sail',
),
backgroundColor: Colors.teal,
body: ContactUs(
cardColor: Colors.white,
textColor: Colors.teal.shade900,
logo: const AssetImage('images/logo.jpg'),
email: 'adoshi26.ad@gmail.com',
companyName: 'Abhishek Doshi',
companyColor: Colors.teal.shade100,
dividerThickness: 2,
phoneNumber: '+917818044311',
website: 'https://abhishekdoshi.godaddysites.com',
githubUserName: 'AbhishekDoshi26',
linkedinURL: 'https://www.linkedin.com/in/abhishek-doshi-520983199/',
tagLine: 'Flutter Developer',
taglineColor: Colors.teal.shade100,
twitterHandle: 'AbhishekDoshi26',
instagram: '_abhishek_doshi',
facebookHandle: '_abhishek_doshi',
),
),
);
}
}