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

A new Flutter package project.

example/lib/main.dart

import 'package:example/a.dart';
import 'package:flutter/material.dart';

import 'b.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return const A(
      child: B(
        child: Text('hello'),
      ),
    );
  }
}
0
likes
130
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package project.

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on dummy_package