Skip to content

Commit

Permalink
more format2
Browse files Browse the repository at this point in the history
  • Loading branch information
riverscuomo committed Aug 22, 2024
1 parent 6469239 commit ec9f292
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions lib/widgets/target_playlist_selection_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,33 +59,34 @@ class TargetPlaylistSelectionOptions extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Expanded(
child: Text('Create a New Playlist'),
child: Text('Select One of Your Playlists'),
),
ElevatedButton(
onPressed: () => _createNewPlaylist(context),
onPressed: () => _showPlaylistSearchBottomSheet(context),
style: ElevatedButton.styleFrom(
minimumSize: const Size(50, 50),
padding: EdgeInsets.zero,
),
child: const Icon(Icons.add),
child: const Icon(Icons.playlist_play),
),
],
),

const SizedBox(
height: 16), // Add some vertical spacing between the rows
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Expanded(
child: Text('Select One of Your Playlists'),
child: Text('Create a New Playlist'),
),
ElevatedButton(
onPressed: () => _showPlaylistSearchBottomSheet(context),
onPressed: () => _createNewPlaylist(context),
style: ElevatedButton.styleFrom(
minimumSize: const Size(50, 50),
padding: EdgeInsets.zero,
),
child: const Icon(Icons.playlist_play),
child: const Icon(Icons.add),
),
],
),
Expand Down

0 comments on commit ec9f292

Please sign in to comment.