Support Docker start/stop/remove

This commit is contained in:
Junyuan Feng
2022-03-08 17:40:32 +08:00
parent 34e6b99297
commit 241002c3ea
8 changed files with 190 additions and 56 deletions

View File

@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class TwoLineText extends StatelessWidget {
const TwoLineText({Key? key, required this.up, required this.down}) : super(key: key);
final String up;
final String down;
@override
Widget build(BuildContext context) {
return Column(
children: [
Text(up, style: const TextStyle(fontSize: 15),),
Text(down, style: const TextStyle(fontSize: 11),)
],
);
}
}