frame_25 0.1.2 copy "frame_25: ^0.1.2" to clipboard
frame_25: ^0.1.2 copied to clipboard

A Flutter package to show the mysterious 25th frame in your apps.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: '25th frame demo',
      home: Frame25.random(
        frame25: Container(color: Colors.red),
        maxDelayInMilliseconds: 3000,
        child: ColoredBox(
          color: Colors.blue,
          child: Center(
            child: Text(
              "Don't blink!",
              style: Theme.of(context).textTheme.headlineMedium,
            ),
          ),
        ),
      ),
    );
  }
}
1
likes
160
pub points
0%
popularity
screenshot

Publisher

verified publisherkazlauskas.dev

A Flutter package to show the mysterious 25th frame in your apps.

Repository (GitHub)
View/report issues

Topics

#flutter #ui #widget

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

flutter

More

Packages that depend on frame_25