refactor:按照代码规范调整注释文件

This commit is contained in:
ryan
2019-02-19 00:06:43 +08:00
parent 2dc2da9156
commit 45ef00f9f5
139 changed files with 671 additions and 849 deletions

View File

@ -1,18 +1,15 @@
/**
* Created with Android Studio.
* User: 一晟
* Date: 2018/11/22
* Time: 上午12:03
* email: zhu.yan@alibaba-inc.com
* tartget: Checkbox 的示例
*/
/// Created with Android Studio.
/// User: 一晟
/// Date: 2018/11/22
/// Time: 上午12:03
/// email: zhu.yan@alibaba-inc.com
/// target: Checkbox 的示例
import 'dart:math';
import 'package:flutter/material.dart';
/*
* Checkbox 默认的实例
* index 当前checkbox 的索引值
*/
/// Checkbox 默认的实例
/// index 当前checkbox 的索引值
class CheckboxDefault extends StatefulWidget{
final int index;
final parent;
@ -40,10 +37,8 @@ class _CheckboxDefault extends State {
}
}
/*
* Checkbox 默认的实例
* index 当前checkbox 的索引值
*/
/// Checkbox 默认的实例
/// index 当前checkbox 的索引值
class CheckboxSelect extends StatelessWidget {
final int index;
final widget;