bug fixes + code cleaning
This commit is contained in:
parent
6e3f8f27a0
commit
d0a4c6ea0a
|
|
@ -1,17 +0,0 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class PodcastDetails extends StatelessWidget {
|
||||
const PodcastDetails({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Material(
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).colorScheme.surface,
|
||||
borderRadius: const BorderRadius.vertical(top: Radius.circular(8)),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
|
||||
|
|
@ -40,7 +40,7 @@ class _BookmarkButtonState extends State<BookmarkButton> {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return DidvanIconButton(
|
||||
gestureSize: widget.bigGestureSize ? 32 : 24,
|
||||
gestureSize: widget.bigGestureSize ? 32 : 28,
|
||||
icon: _value ? DidvanIcons.bookmark_solid : DidvanIcons.bookmark_regular,
|
||||
onPressed: () async {
|
||||
bool confirm = false;
|
||||
|
|
|
|||
|
|
@ -97,6 +97,7 @@ class RadarOverview extends StatelessWidget {
|
|||
DidvanText(
|
||||
radar.description,
|
||||
maxLines: 3,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
const DidvanDivider(),
|
||||
Row(
|
||||
|
|
|
|||
Loading…
Reference in New Issue