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

Execute code at a later stage, but before build has been called for the first time. Useful for initializations that depends on the context

example/main.dart

import 'package:flutter/material.dart';
import 'package:late_init/late_init.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Late Init - Example',
      home: new HomeScreen(),
    );
  }
}

class HomeScreen extends StatefulWidget {
  @override
  HomeScreenState createState() => new HomeScreenState();
}

class HomeScreenState extends State<HomeScreen> with LateInitMixin {
  @override
  void lateInitState() {
    final someId = ModalRoute.of(context)!.settings.arguments as String?;
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Container(color: Colors.red),
    );
  }
}
5
likes
140
pub points
60%
popularity

Publisher

unverified uploader

Execute code at a later stage, but before build has been called for the first time. Useful for initializations that depends on the context

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on late_init