import 'package:flutter/material.dart'; import 'GoalsState.dart'; class Goals extends StatefulWidget { const Goals({super.key}); @override State createState() => GoalsState(); }