This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ItemBuildModify extends StatelessWidget { | |
| final Color color; | |
| ItemBuildModify(this.color ); | |
| @override | |
| Widget build(BuildContext context) { | |
| ////TODO below fail !! if use Scaffold will get Height infinity error | |
| return | |
| // Scaffold( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Note !! | |
| // How Wrap_content ? let size match child height ? | |
| // now not work help me fix it | |
| //Ref : https://stackoverflow.com/questions/50713888/how-to-show-image-from-network-in-flutter-boxdecoration | |
| // https://blog.csdn.net/qq_24531461/article/details/85541613 | |
| // Yes i do not want set height or Width or "Width & height " | |
| class UrbanCongratulationsWidget extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
OlderNewer