import 'package:flutter/material.dart' ; void main () => runApp( MaterialApp ( home: NinjaCard () , )) ; class NinjaCard extends StatefulWidget { @override _NinjaCardState createState () => _NinjaCardState () ; } class _NinjaCardState extends State<NinjaCard> { int level = 0 ; @override Widget build (BuildContext context) { return Scaffold ( backgroundColor: Colors. grey [ 900 ] , appBar: AppBar ( title: Text ( 'Ninja ID Card' ) , centerTitle: true, backgroundColor: Colors. grey [ 850 ] , elevation: 0.0 , ) , floatingActionButton: FloatingActionButton ( onPressed: (){ setState(() { level += 1 ; }) ; } , child: Icon (Icons. add ) , backgroundColor: Colors. grey [ 500 ] , ) , body: Padding ( padding: EdgeInsets . fromLTRB ( 30.0 , 40 , 40.0 , 0 ) , child: Column ( crossAxisAlignment: Cross...