fix scroll_page

This commit is contained in:
stcb 2024-10-18 23:13:47 +03:00
parent 70733dd521
commit 654d403481

View File

@ -50,14 +50,12 @@ class _AlphabetScrollPageState extends State<AlphabetScrollPage> {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
color: Colors.grey[300],
width: double.infinity,
Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
child: Text(
letter,
style: TextStyle(
fontSize: 18,
fontSize: 28,
fontWeight: FontWeight.bold,
),
),
@ -83,7 +81,7 @@ class _AlphabetScrollPageState extends State<AlphabetScrollPage> {
// Handle contact tap
},
);
}).toList(),
}),
],
);
},