Flutter Tutorials

Flutter app development tutorials


flutter – Single line Text

main.dart


import 'package:flutter/material.dart';

void main(){
  runApp(
      MaterialApp(
        home: Scaffold(
          appBar: AppBar(
              title: const Text("Flutter - Single Line Text")
          ),
          body: const Center(
              child: Text(
                "Lorem Ipsum is simply dummy text of the"
                    " printing and typesetting industry.",
                overflow: TextOverflow.ellipsis,
                style: TextStyle(fontSize: 24),
                maxLines: 1,
              )
          ),
        ),
      )
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started