Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. new Expanded(child: Center(
  2. child: !_canShowButton ? new MaterialButton(onPressed: (){
  3. TabApp tab= new TabApp(valueReview);
  4.  
  5. },
  6. child: new Text("Review For Submit",style: TextStyle(
  7. fontSize: 21.0,
  8. fontWeight: FontWeight.bold
  9. ),),
  10. color: Colors.greenAccent,
  11. height: 43.0,
  12. textColor: Colors.blue,
  13. splashColor: Colors.red,):SizedBox()
  14. )),
  15.  
  16. class TabApp extends StatefulWidget {
  17.  
  18. TabApp(int valueReview);
  19.  
  20.  
  21.  
  22. @override
  23. _TabAppState createState() => _TabAppState();
  24. }
  25.  
  26. class _TabAppState extends State<TabApp> with TickerProviderStateMixin{
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement