Skip to content

Commit

Permalink
Fix mobile scrolling (#15)
Browse files Browse the repository at this point in the history
* finalize text and fix image resizing

* finalize text and fix image resizing
  • Loading branch information
pelusodan authored Aug 25, 2024
1 parent c976559 commit f484daa
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 4 deletions.
Binary file modified assets/img/album.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/chuck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/dan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/emma.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/stin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions lib/album/album.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class _AlbumPageState extends State<AlbumPage> {
return SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
IntrinsicWidth(
child: Image.asset(
Expand Down Expand Up @@ -113,8 +113,9 @@ class AlbumBody extends StatelessWidget {
return SizedBox(
height: screenWidth < 450 ? 800 : screenWidth * .45,
width: screenWidth < 450 ? 800 : screenWidth * .45,
child: Markdown(
child: MarkdownBody(
data: description,
selectable: true,
styleSheet: MarkdownStyleSheet(
a: style,
h1: styleh1,
Expand Down
3 changes: 2 additions & 1 deletion lib/album/album_description.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ pints downed in the arriving minutes of an uber driver
## we're ready to finally share that story
Spider Water is a 6-track guide for survival in a world where the silhouette lounge only has one shadow
Exit Plan is a 7-track guide for survival in a world where the silhouette lounge only has one shadow
a world where brat politicians corrupt the masses through major chord progressions
### break free from the plan. September 22
Expand Down
2 changes: 1 addition & 1 deletion lib/home/home_page_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class _HomePageContentState extends State<HomePageContent> {
if (player.playing) {player.pause()} else {player.play()}
},
child: const Text(
"cambridge ma - synth pop for debutants",
"cambridge ma - cryptid pop",
),
))
],
Expand Down

0 comments on commit f484daa

Please sign in to comment.