skip to Main Content

Flutter – My ElevatedButton widgets do not update the variable they are supposed to for the rest of the program

`import 'package:flutter/material.dart'; class SkillEntry extends StatefulWidget { const SkillEntry({super.key, required this.skll}); final String skll; @override State<SkillEntry> createState() => _SkillEntryState(); } class _SkillEntryState extends State<SkillEntry> { @override Widget build(BuildContext context) { int skillvalue = 0; return Container( height: 40, width: 200,…

VIEW QUESTION
Back To Top
Search