navigate property
Widget
navigate
getter/setter pair
Implementation
Widget navigate = Container(
padding: const EdgeInsets.only(left: 32, right: 32, top: 32),
decoration: const BoxDecoration(
color: Color.fromARGB(255, 255, 255, 255),
borderRadius: BorderRadius.only(
topRight: Radius.circular(40),
topLeft: Radius.circular(40),
),
),
child: Row(
children: [
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
padding: const EdgeInsets.only(bottom: 8),
child: const Text(
'Reconhecimento Facial',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
),
),
),
Text(
'Isso garante que você é você mesmo.',
style: TextStyle(
color: Colors.grey[500],
fontSize: 12,
),
),
],
),
),
],
),
);