Skip to content

Commit

Permalink
fix: Refactor SlideHome widget to use Expanded for SpeakerNote
Browse files Browse the repository at this point in the history
  • Loading branch information
blendthink committed Jan 26, 2024
1 parent d1e3979 commit 6697c12
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/slidex/lib/src/internal/home/slide_home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ final class SlideHome extends StatelessWidget {
SlideFrame(
child: _child,
),
Theme(
data: noteTheme,
child: SpeakerNote(
slide.speakerNote,
Expanded(
child: Theme(
data: noteTheme,
child: SpeakerNote(
slide.speakerNote,
),
),
),
],
Expand Down

0 comments on commit 6697c12

Please sign in to comment.