Skip to content

v1.1.0

Choose a tag to compare

@Daniel-Ioannou Daniel-Ioannou released this 22 Feb 19:00
· 57 commits to master since this release
49a8f90

In this version:

Breaking change:

  • Change title type from String to Widget
Version 1.1.0 or later Version 1.0.12 or earlier
  BottomSheetAction(
    title: const Text(
      'Title',
      style: TextStyle(
        fontSize: 18,
        fontWeight: FontWeight.w500,
      ),
    ),
    onPressed: () {},
    leading: const Icon(Icons.add, size: 25),
  ),
 BottomSheetAction(
   title: 'Title',
   textStyle: TextStyle(
     fontSize: 18,
     fontWeight: FontWeight.w500,
   ),
   onPressed: () {},
   leading: const Icon(Icons.add, size: 25),
 ),