import 'package:flutter/material.dart'; class SettingsScreen extends StatefulWidget { const SettingsScreen({super.key}); @override State createState() => _SettingsScreenState(); } class _SettingsScreenState extends State { @override Widget build(BuildContext context) { return Material( color: Theme.of(context).colorScheme.surface, child: SafeArea( child: Column( children: [ ListTile( contentPadding: const EdgeInsets.symmetric(horizontal: 24), leading: const Icon(Icons.login), title: const Text('Connect with Spotify'), subtitle: const Text('To explore your own library and more'), trailing: const Icon(Icons.chevron_right), onTap: () {}, ), ], ), ), ); } }