labeled_text 0.0.2 copy "labeled_text: ^0.0.2" to clipboard
labeled_text: ^0.0.2 copied to clipboard

A Flutter Widget to display Text with a custom label field and a bottom line.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text(widget.title),
        ),
        body: const LabeledText(
            description: "Name", value: "Spotify", lineColor: Colors.red));
  }
}
2
likes
130
pub points
0%
popularity

Publisher

unverified uploader

A Flutter Widget to display Text with a custom label field and a bottom line.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on labeled_text