NiceNavbar constructor

const NiceNavbar({
  1. Key? key,
  2. String? title,
  3. Widget? leading,
  4. List<Widget>? actions,
  5. Widget? userWidget,
  6. double height = 52,
  7. double elevation = 1,
})

Implementation

const NiceNavbar({
  super.key,
  this.title,
  this.logo,
  this.leading,
  this.actions,
  this.userWidget,
  this.height = 52,
  this.elevation = 1,
});