ftx 0.0.1 copy "ftx: ^0.0.1" to clipboard
ftx: ^0.0.1 copied to clipboard

outdated

A new Flutter package that will help you to write less code & do more.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter FTX Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        body: "Hello world".text.box.color(Colors.amber).rounded(8).p(4).build().alignBottomCenter().onTap((){
              print("clicked");
        }));
  }
}
1
likes
0
points
27
downloads

Publisher

verified publisherappspirelabs.com

Weekly Downloads

A new Flutter package that will help you to write less code & do more.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on ftx