Temprorary
Temprorary
// image: AssetImage('assets/images/background.jpg'),
// alignment: Alignment.center,
// height: double.infinity,
// width: double.infinity,
// fit: BoxFit.fill,
-appBar: AppBar(
backgroundColor: Colors.transparent,
toolbarHeight: 75,
title:
const Text("Kolozen Technology",
style: TextStyle(
color: Colors.blue,
fontSize: 50,
fontWeight: FontWeight.w200
//fontStyle:FontStyle.italic
),
),
actions: [
Padding(
padding: const EdgeInsets.only(
left: 10.0, right: 10.0, top: 21.0, bottom: 5.0),
child: SizedBox(
height: 100,
child: Stack(
alignment: Alignment.center,
children: <Widget>[
Container(
decoration: const BoxDecoration(
color: Colors.transparent,
),
// //margin: const EdgeInsets.all(5),
// child: ElevatedButton(
//
// onPressed: () {
// // Navigator.push(
// // context,
// // MaterialPageRoute(
// // builder: (context) => const Login()),
// // );
// },
child: const Row(
mainAxisSize: MainAxisSize.min,
children: [
const Text('Services',
style: TextStyle(
color: Colors.white,
fontSize: 15,
fontWeight: FontWeight.w200), // <-- Text
// // SizedBox(
// // width: 1,
// // height: 1,
// // ),
//
// )
// ],
),
]),
// ),
)],
),
),
),
Padding(
padding: const EdgeInsets.only(
left: 20.0, right: 20.0, top: 20.0, bottom: 5.0),
child: SizedBox(
height: 100,
child: Stack(
alignment: Alignment.center,
children: <Widget>[
Container(
decoration: const BoxDecoration(
color: Colors.transparent,
),
//margin: const EdgeInsets.all(5),
// child: ElevatedButton(
// onPressed: () {
// Navigator.push(
// context,
// MaterialPageRoute(
// builder: (context) => const Login()),
// );
// },
child: const Row(
mainAxisSize: MainAxisSize.min,
children: [
Text('About Us',
style: TextStyle(
color: Colors.white,
fontSize: 15,
fontWeight: FontWeight.w200), // <-- Text
// SizedBox(
// width: 1,
// height: 1,
// ),
)
],
),
// ),
),
],
),
),
),
]),
-- Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
InkWell(
onTap: () {},
child: Text(
'Discover',
style: TextStyle(color: Colors.black),
),
),
SizedBox(width: screenSize.width / 20),
InkWell(
onTap: () {},
child: Text(
'Contact Us',
style: TextStyle(color: Colors.black),
),
),
],
),
),