Skip to content

Commit

Permalink
Merge pull request #41 from leeyisoft/master
Browse files Browse the repository at this point in the history
fix "A RenderFlex overflowed by xx pixels on the right." bug
  • Loading branch information
mehranshoqi committed Apr 25, 2024
2 parents 42a838f + d6b1f96 commit bbe8c7f
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions lib/src/voice_message_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,16 @@ class VoiceMessageView extends StatelessWidget {
const SizedBox(width: 10),

/// slider & noises
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 8),
_noises(newTHeme),
const SizedBox(height: 4),
Text(controller.remindingTime, style: counterTextStyle),
],
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 8),
_noises(newTHeme),
const SizedBox(height: 4),
Text(controller.remindingTime, style: counterTextStyle),
],
),
),

///
Expand Down

0 comments on commit bbe8c7f

Please sign in to comment.