d_method 0.0.1 copy "d_method: ^0.0.1" to clipboard
d_method: ^0.0.1 copied to clipboard

outdated

Package for some shortcut method

example/lib/main.dart

// ignore_for_file: prefer_const_constructors

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(title: const Text('DView')),
        body: ListView(
          padding: EdgeInsets.all(16),
          children: [
            ElevatedButton(
              onPressed: () {},
              child: Text(''),
            ),
            ElevatedButton(
              onPressed: () {},
              child: Text(''),
            ),
            ElevatedButton(
              onPressed: () {},
              child: Text(''),
            ),
            ElevatedButton(
              onPressed: () {},
              child: Text(''),
            ),
          ],
        ),
      ),
    );
  }
}
3
likes
0
points
58
downloads

Publisher

verified publisherindratrisnar.com

Weekly Downloads

Package for some shortcut method

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on d_method