0% found this document useful (0 votes)
19 views3 pages

Temprorary

Uploaded by

sowmisoms0
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views3 pages

Temprorary

Uploaded by

sowmisoms0
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

// Image(

// 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),
),
),
],
),
),

You might also like