eticon_struct 1.0.6 copy "eticon_struct: ^1.0.6" to clipboard
eticon_struct: ^1.0.6 copied to clipboard

Package for creating the project structure and individual elements. Will help you create the necessary elements in one line!

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Empty example'),
      ),
      body: Center(
        child: Container(
          width: 150,
          height: 150,
          color: Colors.black,
        ),
      ),
    );
  }
}
4
likes
110
pub points
7%
popularity

Publisher

verified publishereticon.ru

Package for creating the project structure and individual elements. Will help you create the necessary elements in one line!

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

args, change_case, dart_style, flutter, process_run, yaml

More

Packages that depend on eticon_struct