Skip to content

Commit

Permalink
test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AthulNoobie committed Nov 1, 2024
1 parent 7ea1e3d commit df071f6
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 60 deletions.
3 changes: 1 addition & 2 deletions lib/desktop_body.dart
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ class _AppBodyState extends State<AppBody> {
),
SizedBox(
width: screenWidth,
height: screenHeight * 0.7,
//height: screenHeight * 0.7,
child: Row(
children: [
Flexible(
Expand Down Expand Up @@ -842,7 +842,6 @@ class _AppBodyState extends State<AppBody> {
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 20),
child: SizedBox(
width: double.infinity,
height: 60.5,
child: Card(
elevation: 3,
Expand Down
119 changes: 61 additions & 58 deletions lib/mobile_body.dart
Original file line number Diff line number Diff line change
Expand Up @@ -388,67 +388,70 @@ class _MobileBodyState extends State<MobileBody> {
),
),
),
Stack(
children: [
Container(
color: const Color(0xff1d2733),
width: screenWidth,
height: screenHeight * 0.3,
),
Column(
children: [
Align(
alignment: Alignment.topLeft,
child: Padding(
padding: const EdgeInsets.only(left: 12.5, top: 25),
child: SizedBox(
width: 220,
height: 80,
child: Image.asset("assets/images/logo_tr.png"),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Stack(
children: [
Container(
color: const Color(0xff1d2733),
width: screenWidth,
height: screenHeight * 0.3,
),
Column(
children: [
Align(
alignment: Alignment.topLeft,
child: Padding(
padding: const EdgeInsets.only(left: 12.5, top: 25),
child: SizedBox(
width: 220,
height: 80,
child: Image.asset("assets/images/logo_tr.png"),
),
),
),
),
Padding(
padding: const EdgeInsets.only(top: 30, bottom: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
iconBtns(
FontAwesomeIcons.facebook,
const Color(0xff395498),
() => launchUrl(
"https://m.facebook.com/apjaktuofficial/")),
iconBtns(
FontAwesomeIcons.linkedin,
const Color(0xff0270ad),
() => launchUrl(
"https://in.linkedin.com/school/apj-abdul-kalam-technological-university/")),
iconBtns(
FontAwesomeIcons.instagram,
const Color(0xffea4c56),
() => launchUrl(
"https://instagram.com/keralatechnologicaluniversity/")),
iconBtns(
FontAwesomeIcons.twitter,
const Color(0xff029eec),
() => launchUrl(
"https://twitter.com/apjaktuofficial")),
iconBtns(
FontAwesomeIcons.youtube,
const Color(0xfff60002),
() => launchUrl(
"https://www.youtube.com/channel/UC4lFeTaXLEhOeharO9-WS6w/featured")),
],
Padding(
padding: const EdgeInsets.only(top: 30, bottom: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
iconBtns(
FontAwesomeIcons.facebook,
const Color(0xff395498),
() => launchUrl(
"https://m.facebook.com/apjaktuofficial/")),
iconBtns(
FontAwesomeIcons.linkedin,
const Color(0xff0270ad),
() => launchUrl(
"https://in.linkedin.com/school/apj-abdul-kalam-technological-university/")),
iconBtns(
FontAwesomeIcons.instagram,
const Color(0xffea4c56),
() => launchUrl(
"https://instagram.com/keralatechnologicaluniversity/")),
iconBtns(
FontAwesomeIcons.twitter,
const Color(0xff029eec),
() => launchUrl(
"https://twitter.com/apjaktuofficial")),
iconBtns(
FontAwesomeIcons.youtube,
const Color(0xfff60002),
() => launchUrl(
"https://www.youtube.com/channel/UC4lFeTaXLEhOeharO9-WS6w/featured")),
],
),
),
),
const Divider(thickness: 0.3),
const Text(
"Copyright@ APJ Abdul Kalam Technological University 2021",
style: TextStyle(color: Color(0xff898b8d)),
)
],
)
],
const Divider(thickness: 0.3),
const Text(
"Copyright@ APJ Abdul Kalam Technological University 2021",
style: TextStyle(color: Color(0xff898b8d)),
)
],
)
],
),
)
],
),
Expand Down

0 comments on commit df071f6

Please sign in to comment.