Skip to content

Instantly share code, notes, and snippets.

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