Fixed some issues

This commit is contained in:
Juan Gilsanz Polo 2023-05-09 15:31:00 +02:00
parent aca78bf89a
commit e795050a95
4 changed files with 30 additions and 9 deletions

View file

@ -24,10 +24,12 @@ class ProcessDialog extends StatelessWidget {
children: [
const CircularProgressIndicator(),
const SizedBox(width: 40),
Text(
message,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface
Expanded(
child: Text(
message,
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface
),
),
)
],

View file

@ -53,8 +53,7 @@ class _ServersListItemState extends State<ServersListItem> with SingleTickerProv
animationController = AnimationController(
duration: const Duration(milliseconds: 200),
vsync: this,
)
..addListener(() => setState(() => {}));
);
animation = Tween(
begin: 0.0,
end: 0.5,