Skip to content

Commit

Permalink
tweaks2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rivers authored and Rivers committed Sep 10, 2024
1 parent 6463784 commit da8659d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 32 deletions.
31 changes: 0 additions & 31 deletions lib/widgets/playlist_widgets.dart
Original file line number Diff line number Diff line change
@@ -1,36 +1,5 @@
import 'package:flutter/material.dart';
import 'package:spotify/spotify.dart';
import 'package:spotkin_flutter/app_core.dart';

// class TargetPlaylistName extends StatelessWidget {
// const TargetPlaylistName({
// Key? key,
// required this.playlistController,
// this.playlistName,
// this.quantityController,
// }) : super(key: key);

// final TextEditingController playlistController;
// final String? playlistName;
// final TextEditingController? quantityController;

// @override
// Widget build(BuildContext context) {
// return playlistName != null
// ? Text(
// playlistName!,
// style: const TextStyle(fontWeight: FontWeight.bold),
// )
// : TextFormField(
// controller: playlistController,
// decoration: const InputDecoration(
// labelText: 'Source playlist link',
// hintText: 'Enter Spotify playlist link or ID',
// ),
// validator: Utils.validateSpotifyPlaylistInput,
// );
// }
// }

Widget playlistSubtitle(PlaylistSimple playlist, BuildContext context) {
return playlist.owner != null
Expand Down
3 changes: 2 additions & 1 deletion lib/widgets/target_playlist_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class TargetPlaylistWidget extends StatelessWidget {
playlistTitle(
context,
targetPlaylist,
style: Theme.of(context).textTheme.titleSmall,
style:
Theme.of(context).textTheme.titleMedium,
),
// const SizedBox(height: 5),
// Text(targetPlaylist.description ?? '',
Expand Down

0 comments on commit da8659d

Please sign in to comment.