0

I'm creating a new app and attempting to change the icon for the draggable expandable fab, but I'm not seeing where to set the change. I've tried multiple different ways but keep getting the error. Here is a partial piece of my code. Thank you.

  backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
  floatingActionButtonLocation: ExpandableFloatLocation(),
  floatingActionButton: ExpandableDraggableFab(
    childrenBoxDecoration: const BoxDecoration(color: Colors.transparent),
    childrenCount: 6,
    distance: 6,
    childrenType: ChildrenType.columnChildren,
    childrenAlignment: Alignment.centerRight,
    children: [
      FloatingActionButton(
          heroTag: "addBtn",
          onPressed: () => launchURL('https://gmail.com'),
          backgroundColor: Color.fromARGB(255, 250, 3, 3),
          child: const FaIcon(FontAwesomeIcons.mailBulk)),

0 Answers0