Merge branch 'krille/story-design' into 'main'
fix: Missing bottom padding in text only stories See merge request famedly/fluffychat!891
This commit is contained in:
commit
1af7a50b73
1 changed files with 4 additions and 1 deletions
|
|
@ -236,7 +236,10 @@ class StoryView extends StatelessWidget {
|
||||||
onHorizontalDragEnd: controller.unhold,
|
onHorizontalDragEnd: controller.unhold,
|
||||||
child: AnimatedContainer(
|
child: AnimatedContainer(
|
||||||
duration: const Duration(milliseconds: 200),
|
duration: const Duration(milliseconds: 200),
|
||||||
padding: const EdgeInsets.all(16.0),
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 16.0,
|
||||||
|
vertical: 80,
|
||||||
|
),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
gradient: event.messageType == MessageTypes.Text
|
gradient: event.messageType == MessageTypes.Text
|
||||||
? LinearGradient(
|
? LinearGradient(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue