aqlinter 2.1.0 copy "aqlinter: ^2.1.0" to clipboard
aqlinter: ^2.1.0 copied to clipboard

This is AQoong's favorit linter set

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    const text =
        '안녕하세요.dfdsafdsafsd dsff next time.\nplugin example app test Nice Weather in Earth. 입니다!';
    const style = TextStyle(
      fontSize: 50,
      overflow: TextOverflow.fade,
      color: Colors.black,
      fontWeight: FontWeight.w800,
    );

    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const SingleChildScrollView(
          scrollDirection: Axis.vertical,
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.start,
            children: [
              SizedBox(
                width: 200,
                height: 200,
                child: Text(
                  text,
                  maxLines: 5,
                  textAlign: TextAlign.left,
                  style: style,
                ),
              )
            ],
          ),
        ),
      ),
    );
  }
}
2
likes
140
points
89
downloads

Publisher

verified publisheraqoong.site

Weekly Downloads

This is AQoong's favorit linter set

Homepage
Repository (GitHub)
View/report issues

Topics

#lints

Documentation

API reference

License

MIT (license)

Dependencies

analyzer, flutter, flutter_lints

More

Packages that depend on aqlinter