Skip to main content

6

Image

import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
children: [
Row(
children: [
const Expanded(
child: Text(
'Your App Title',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
color: Colors.black87,
),
),
),
Container(
width: 40,
height: 40,
decoration: const BoxDecoration(
shape: BoxShape.circle,
color: Colors.black12,
),
),
const Gap(12),
Container(
width: 40,
height: 40,
decoration: const BoxDecoration(
shape: BoxShape.circle,
color: Colors.black12,
),
),
],
),
const Gap(20),
Container(
height: 40,
width: double.infinity,
decoration: const BoxDecoration(
color: Colors.black12,
),
alignment: Alignment.center,
child: const Text('Tab menu'),
),
],
),
),