develop
LRC 2 years ago
parent 36cdde0e29
commit 65eb3f161f

@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="时间管理"
android:label="多为时间"
android:name="${applicationName}"
android:icon="@mipmap/logo">
<activity

@ -1,27 +0,0 @@
import 'package:flutter/material.dart';
/**
* @desc 线
* @author xiedong
* @date 2020-02-24.
*/
class SpaceWidget extends StatelessWidget {
double height, width;
SpaceWidget({
this.height = 1,
this.width = 1,
}) : super();
@override
Widget build(BuildContext context) {
return
Container(
height: height,
width: width,
color: Colors.transparent,
);
}
}
Loading…
Cancel
Save