ssReady method
- covariant Rocket sm
Return widget tree for RK.ssReady state.
The ssReady method is marked public so it shows in the api documentation. The rest are similar and are kept as private
Implementation
Widget ssReady(covariant Rocket sm) {
Row middle = Row(
children: <Widget>[
Spacer(),
getTickCounter(null,"--"),
Spacer(),
],
);
Row butRow = Row(
children: <Widget>[
Spacer(),
fancyButton(sm,action:RK.saStartCtr,label:"Start Countdown",width:136,height:30),
Spacer(),
],
);
return _makeDisplay(sm,sm._colReady,sm._devType,middle,"Waiting to launch",butRow);
}