format code

This commit is contained in:
yifeng.yl
2019-01-11 15:19:16 +08:00
parent 111fae48f7
commit 1121354854
122 changed files with 291 additions and 709 deletions

View File

@ -2,19 +2,19 @@ import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
class OverflowBoxDefault extends StatelessWidget {
double curmaxHeight;
double curmaxWidth;
double curHeight;
double curWidth;
AlignmentGeometry curalignment;
final double curmaxHeight;
final double curmaxWidth;
final double curHeight;
final double curWidth;
final AlignmentGeometry curalignment;
OverflowBoxDefault(
{Key key,
double this.curmaxHeight,
double this.curmaxWidth,
double this.curWidth,
double this.curHeight,
AlignmentGeometry this.curalignment})
this.curmaxHeight,
this.curmaxWidth,
this.curWidth,
this.curHeight,
this.curalignment})
: super(key: key);
@override