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

@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
/**
/*
* Author: xiaojia.dxj
* Date: 2018/11/22
* Email: xiaojia.dxj@alibaba-inc.com
@ -12,7 +12,7 @@ import 'package:flutter/material.dart';
class StackDefault extends StatelessWidget {
final int currIndex;
const StackDefault(int this.currIndex) : super();
const StackDefault( this.currIndex) : super();
@override
Widget build(BuildContext context) {
@ -54,7 +54,7 @@ class StackDefault extends StatelessWidget {
class StackIndex extends StatelessWidget {
final int currIndex;
const StackIndex(int this.currIndex) : super();
const StackIndex( this.currIndex) : super();
@override
Widget build(BuildContext context) {