inherit 0.1.0 copy "inherit: ^0.1.0" to clipboard
inherit: ^0.1.0 copied to clipboard

discontinuedreplaced by: auto_stories

Syntax sugars to manage flutter inherit in chain programming style.

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Probe(),
      ),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return const Center(child: Text('probe'));
  }
}
0
likes
160
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

Syntax sugars to manage flutter inherit in chain programming style.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on inherit