mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
Support Docker start/stop/remove
This commit is contained in:
17
lib/view/widget/two_line_text.dart
Normal file
17
lib/view/widget/two_line_text.dart
Normal 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),)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user