line_limit_lint 0.0.6
line_limit_lint: ^0.0.6 copied to clipboard
Lint rule, designed to highlight widget files that exceed a specified size threshold.
import 'package:example/nice_widget.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
/// Root widget of an app.
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: NiceWidget(),
);
}
}