mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-31 22:18:48 +08:00
format code
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user