fastyle_digit_calculator 0.0.9 copy "fastyle_digit_calculator: ^0.0.9" to clipboard
fastyle_digit_calculator: ^0.0.9 copied to clipboard

UI digit calculator built on top of the Fastyle library.

example/lib/main.dart

// Flutter imports:
import 'package:flutter/material.dart';

// Package imports:
import 'package:fastyle_dart/fastyle_dart.dart';
import 'package:fastyle_digit_calculator/digit_calculator.dart';

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

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

  @override
  MyAppState createState() => MyAppState();
}

class MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const FastApp(
      home: Scaffold(
        body: FastDigitCalculator(),
      ),
    );
  }
}
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

UI digit calculator built on top of the Fastyle library.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

fastyle_dart, flutter, font_awesome_flutter, t_helpers

More

Packages that depend on fastyle_digit_calculator