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

outdated

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
0
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

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

License

unknown (license)

Dependencies

flutter

More

Packages that depend on late_init