Checkbox in flutter with maestro

228 views Asked by At

i would like to manage a checkbox in flutter with Maestro Mobile Dev (https://maestro.mobile.dev/) but maestro doesn't identify my widget

CheckboxListTile(
   title: Text('localizations.welcomeDisclaimerChoice'),
   value: checkedValue,
   onChanged: (newValue) {
      setState(() {
          checkedValue = newValue!;
      });
   },
);

i don't find semantic way to resolve my issue Any help

Thx

0

There are 0 answers