about page update
This commit is contained in:
@@ -63,19 +63,21 @@ class _MIHAboutState extends State<MIHAbout> {
|
|||||||
"Mzansi Innovation Hub",
|
"Mzansi Innovation Hub",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
fontSize: 25,
|
fontSize: 30,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 10,
|
height: 10,
|
||||||
),
|
),
|
||||||
Text(
|
Wrap(
|
||||||
vision,
|
alignment: WrapAlignment.start,
|
||||||
textAlign: TextAlign.center,
|
crossAxisAlignment: WrapCrossAlignment.start,
|
||||||
style: const TextStyle(
|
spacing: 10,
|
||||||
//fontWeight: FontWeight.bold,
|
runSpacing: 10,
|
||||||
fontSize: 15,
|
children: [
|
||||||
),
|
ourVision(),
|
||||||
|
ourMission(),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 10,
|
height: 10,
|
||||||
@@ -93,17 +95,21 @@ class _MIHAboutState extends State<MIHAbout> {
|
|||||||
textColor: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
textColor: MzanziInnovationHub.of(context)!.theme.primaryColor(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
const Padding(
|
const Padding(
|
||||||
padding: EdgeInsets.symmetric(vertical: 10.0),
|
padding: EdgeInsets.symmetric(vertical: 10.0),
|
||||||
child: Divider(),
|
child: Divider(),
|
||||||
),
|
),
|
||||||
Wrap(
|
Column(
|
||||||
alignment: WrapAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
crossAxisAlignment: WrapCrossAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
spacing: 10,
|
mainAxisSize: MainAxisSize.max,
|
||||||
runSpacing: 10,
|
// spacing: 10,
|
||||||
|
// runSpacing: 10,
|
||||||
children: [
|
children: [
|
||||||
founderProPic(),
|
founderTitle(),
|
||||||
founderBio(),
|
founderBio(),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -122,44 +128,17 @@ class _MIHAboutState extends State<MIHAbout> {
|
|||||||
bio += "(University of the Western Cap)\n";
|
bio += "(University of the Western Cap)\n";
|
||||||
bio +=
|
bio +=
|
||||||
"6 Year of banking experience with one of the big 5 banks of South Africa.";
|
"6 Year of banking experience with one of the big 5 banks of South Africa.";
|
||||||
return SizedBox(
|
|
||||||
width: 400,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
bio,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
style: const TextStyle(
|
|
||||||
//fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 15,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 10,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget founderProPic() {
|
|
||||||
String heading = "Yasien Meth (Founder & CEO)";
|
|
||||||
ImageProvider logoFrame =
|
ImageProvider logoFrame =
|
||||||
MzanziInnovationHub.of(context)!.theme.altLogoFrame();
|
MzanziInnovationHub.of(context)!.theme.altLogoFrame();
|
||||||
return Column(
|
return Wrap(
|
||||||
|
alignment: WrapAlignment.center,
|
||||||
|
crossAxisAlignment: WrapCrossAlignment.center,
|
||||||
|
spacing: 10,
|
||||||
|
runSpacing: 10,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
SizedBox(
|
||||||
heading,
|
width: 300,
|
||||||
textAlign: TextAlign.center,
|
child: Stack(
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 20,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 10,
|
|
||||||
),
|
|
||||||
Stack(
|
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
fit: StackFit.loose,
|
fit: StackFit.loose,
|
||||||
children: [
|
children: [
|
||||||
@@ -176,12 +155,115 @@ class _MIHAboutState extends State<MIHAbout> {
|
|||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 400,
|
||||||
|
child: Text(
|
||||||
|
bio,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
//fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 15,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget founderTitle() {
|
||||||
|
String heading = "Yasien Meth (Founder & CEO)";
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
heading,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 20,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget ourVision() {
|
||||||
|
String heading = "Our Vision";
|
||||||
|
String vision =
|
||||||
|
"Digitizing Mzansi one process at a time. Discover essential Mzansi apps to streamline your personal and professional life. Simplify your daily tasks with our user-friendly solutions.";
|
||||||
|
|
||||||
|
return SizedBox(
|
||||||
|
width: 500,
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
heading,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 25,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
vision,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
//fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 15,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget ourMission() {
|
||||||
|
String heading = "Our Mission";
|
||||||
|
String mission =
|
||||||
|
"Bridge the digital divide in Mzansi, ensuring that everyone can benefit from the power of technology. We empower lives by providing simple, elegant solutions that elevate daily experiences. With our user-friendly approach, we're making the digital world accessible to all, ensuring no one is left behind in the digital revolution.";
|
||||||
|
|
||||||
|
return SizedBox(
|
||||||
|
width: 500,
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
heading,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 25,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 10,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
mission,
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(
|
||||||
|
//fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 15,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Widget mihSocials() {
|
Widget mihSocials() {
|
||||||
String heading = "MIH Socials";
|
String heading = "Follow Our Journey";
|
||||||
return Column(
|
return Column(
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
|
|||||||
Reference in New Issue
Block a user