skip to Main Content

I am trying to make a scalable Button widget using flutter, all the property is working except onPressed which required a VoidCallback data type, what is wrong in here
code:

// ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:flutter/material.dart';

// ignore: must_be_immutable
class PrimaryButton extends StatelessWidget {
  // NOTE: if VoidCallback + required this.onPressedData is uncommented then route error
  // VoidCallback onPressedData;
  String textButtonData;
  PrimaryButton({
    super.key,
    // required this.onPressedData,
    required this.textButtonData,
  });

  @override
  Widget build(BuildContext context) {
    return ElevatedButton(
      //TODO: implement onPressed to each button
      onPressed: () {},
      // onPressedData,
      style: ButtonStyle(
        fixedSize: WidgetStatePropertyAll(Size(368, 49),),
        backgroundColor: WidgetStatePropertyAll(
          Theme.of(context).colorScheme.primaryContainer
          ),
      ),
      child: Text(
        textButtonData,
        style: TextStyle(
          color: Theme.of(context).colorScheme.onPrimaryContainer,
          fontWeight: FontWeight.bold,
          fontSize: 18)),
    );
  }
}

I tried using the commented solution but it did not work due to something

2

Answers


  1. try this code

    class PrimaryButton extends StatelessWidget {
     final VoidCallback onPressedData;
     final String textButtonData;
      const PrimaryButton({
        super.key,
        required this.onPressedData,
        required this.textButtonData,
      });
    
      @override
      Widget build(BuildContext context) {
        return ElevatedButton(
          onPressed: onPressedData,
          style: ButtonStyle(
            fixedSize: WidgetStatePropertyAll(Size(368, 49),),
            backgroundColor: WidgetStatePropertyAll(
              Theme.of(context).colorScheme.primaryContainer
              ),
          ),
          child: Text(
            textButtonData,
            style: TextStyle(
              color: Theme.of(context).colorScheme.onPrimaryContainer,
              fontWeight: FontWeight.bold,
              fontSize: 18)),
        );
      }
    }
    
    Login or Signup to reply.
  2. You do not actually need to declare it as VoidCallBack simply change it to this:
    also declare it as final and git rid of immutability warning, hope it works for you

    import 'package:flutter/material.dart';
    
    class PrimaryButton extends StatelessWidget {
      final void Function() onPressedData;
      final String textButtonData;
      PrimaryButton({
        super.key,
        required this.onPressedData,
        required this.textButtonData,
      });
    
      @override
      Widget build(BuildContext context) {
        return ElevatedButton(
          //TODO: implement onPressed to each button
          onPressed: onPressedData,
          // onPressedData,
          style: ButtonStyle(
            fixedSize: WidgetStatePropertyAll(Size(368, 49),),
            backgroundColor: WidgetStatePropertyAll(
              Theme.of(context).colorScheme.primaryContainer
              ),
          ),
          child: Text(
            textButtonData,
            style: TextStyle(
              color: Theme.of(context).colorScheme.onPrimaryContainer,
              fontWeight: FontWeight.bold,
              fontSize: 18)),
        );
      }
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search