When I use the stateless widget snippit it appears like this:
class MyWidget extends StatelessWidget {
const MyWidget({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}import 'package:flutter/material.dart';
I have to move the import to the top every time, is there a way to fix this?