mokutan_flutter_analysis 4.1.1 copy "mokutan_flutter_analysis: ^4.1.1" to clipboard
mokutan_flutter_analysis: ^4.1.1 copied to clipboard

outdated

Static analysis rules for Dart and Flutter used at Mokutan

example/lib/main.dart

// ignore_for_file: flutter_style_todos

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      // TODO(anyone): fix this
      //todo fix ths
      // ignore: prefer_single_quotes
      title: "sdsd",
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: "THIS SHOULD BE A PROBLEM"),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headlineMedium,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ),
    );
  }
}
4
likes
0
points
76
downloads

Publisher

unverified uploader

Weekly Downloads

Static analysis rules for Dart and Flutter used at Mokutan

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

dart_code_metrics, flutter_lints

More

Packages that depend on mokutan_flutter_analysis