import 'package:flutter/material.dart'; class RenovationManageView extends StatefulWidget { final int index; RenovationManageView({Key? key, required this.index}) : super(key: key); @override _RenovationManageViewState createState() => _RenovationManageViewState(); } class _RenovationManageViewState extends State { @override Widget build(BuildContext context) { return ListView(); } }