CanvasView constructor

CanvasView({
  1. Key? key,
  2. required Widget title,
  3. required Color appBarBackground,
  4. List<Widget>? actions,
  5. Widget? bodies,
  6. Color? backgroundColor,
  7. int currentIndexTab = 0,
  8. bool isBottomNavigationBar = false,
  9. Color bottomBackgroundColor = Colors.white,
})

Implementation

CanvasView({
  Key? key,required this.title,
  required this.appBarBackground,
  this.actions,this.bodies,
  this.backgroundColor,
  this.currentIndexTab=0,
  this.isBottomNavigationBar=false,
  this.bottomBackgroundColor = Colors.white
});