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