Merge branch 'develop' of github.com:alibaba/flutter-common-widgets-app into develop

This commit is contained in:
sanfan.hx
2019-01-15 10:30:15 +08:00
24 changed files with 837 additions and 83 deletions

View File

@ -96,7 +96,6 @@ class PopupMenuButtonCustom extends StatelessWidget {
: super();
@override
Widget build(BuildContext context) {
print('onSelected1:${widget.options}');
final String selectStr = widget.options['defaultSelect'];
return PopupMenuButton(
//如果提供则用于此按钮的widget。

View File

@ -1,9 +1,6 @@
import 'package:flutter/material.dart';
/*
* 基本示例
*
*/
// 基本示例
class DefaultTextField extends StatelessWidget {
@override
Widget build(BuildContext context) {

View File

@ -20,7 +20,6 @@ class _MemoryImageDemoState extends State<MemoryImageDemo> {
super.initState();
rootBundle.load('assets/images/food01.jpeg').then((data) {
if (mounted) {
print(data);
setState(() {
bytes = data.buffer.asUint8List();
});