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

outdated

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
0
pub points
0%
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

License

unknown (LICENSE)

Dependencies

args, flutter, process_run

More

Packages that depend on eticon_struct