egycoder_cli 1.1.0 copy "egycoder_cli: ^1.1.0" to clipboard
egycoder_cli: ^1.1.0 copied to clipboard

outdated

this is one of egycoder framework packages, it's a cli to manage your code

example/lib/main.dart

import 'package:example/presentation/pages/splash/splash.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';

void main(List<String> args) {
  runApp(MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: SplashPage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Image.network(
            'https://www.pngall.com/wp-content'
            '/uploads/2016/05/Coming-Soon-Free-Download-PNG.png',
          ),
          const Text('Hello, this is Home Page'),
        ],
      ),
    );
  }
}
4
likes
0
points
122
downloads

Publisher

unverified uploader

Weekly Downloads

this is one of egycoder framework packages, it's a cli to manage your code

Repository

License

unknown (license)

Dependencies

args, dartz, equatable, get_it, process_run

More

Packages that depend on egycoder_cli