Flutter Tutorials

Flutter app development tutorials


flutter – Text overflow ellipsis

main.dart


import 'package:flutter/material.dart';

void main(){
  runApp(
      MaterialApp(
        home: Scaffold(
          appBar: AppBar(
              title: const Text("Flutter - Text Overflow Ellipsis")
          ),
          body: Container(
              alignment: Alignment.center,
              padding: const EdgeInsets.all(8),
              child: const Text(
                  "Lorem Ipsum is simply dummy text of the"
                      " printing and typesetting industry.",
                  overflow: TextOverflow.ellipsis,
                  style: TextStyle(fontSize: 26),
                  maxLines: 2
              )
          ),
        ),
      )
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started