skip to Main Content

What should I do with Flutter?

Column( children: <Widget>[ SizedBox(height: 10), Text( "No Transactions Yet!!", style: Theme.of(context).textTheme.headline6, ), SizedBox( height: 20, ), Container( alignment: Alignment(0, 0), height: 240, child: Image.asset('assets/images/wait.png', fit: BoxFit.cover), ), ], ) this is a part of my flutter code, I have downloaded…

VIEW QUESTION
Back To Top
Search