Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Widget header2() {
- return Container(
- width: 200,
- height: 250,
- decoration: const BoxDecoration(
- borderRadius: BorderRadius.only(
- topLeft: Radius.circular(0),
- topRight: Radius.circular(0),
- bottomLeft: Radius.circular(40),
- bottomRight: Radius.circular(40),
- ),
- color: Color(0xff39e0fa),
- ),
- child: Row(
- children: [
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- mainAxisAlignment: MainAxisAlignment.start,
- children: [
- const SizedBox(
- height: 10,
- ),
- Image.asset(
- 'assets/foto.png',
- width: 200,
- height: 125,
- fit: BoxFit.contain,
- ),
- ],
- ),
- Text(
- 'COurt VISON',
- style: blackTextStyle.copyWith(
- fontSize: 18,
- fontWeight: semiBold,
- ),
- overflow: TextOverflow.ellipsis,
- ),
- ],
- ),
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement