Skip to content

Commit 5d653f0

Browse files
committed
update swipe_channel image
1 parent b5de19e commit 5d653f0

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

packages/docs_screenshots/test/channel/channel_preview_test.dart

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,20 +175,23 @@ void main() {
175175
body: Stack(
176176
children: [
177177
Container(
178-
color: Colors.red,
178+
color: Colors.grey[200],
179179
alignment: Alignment.centerRight,
180180
padding: const EdgeInsets.only(right: 20),
181181
child: const Column(
182182
mainAxisAlignment: MainAxisAlignment.center,
183183
children: [
184-
Icon(Icons.delete, color: Colors.white),
185-
Text('Delete', style: TextStyle(color: Colors.white, fontSize: 12)),
184+
Icon(Icons.delete, color: Colors.red),
185+
Text('Delete', style: TextStyle(color: Colors.red, fontSize: 12)),
186186
],
187187
),
188188
),
189189
Transform.translate(
190190
offset: const Offset(-80, 0),
191-
child: StreamChannelListItem(channel: channel),
191+
child: ColoredBox(
192+
color: Colors.white,
193+
child: StreamChannelListItem(channel: channel),
194+
),
192195
),
193196
],
194197
),
809 Bytes
Loading

0 commit comments

Comments
 (0)