Flutter Tutorials

Flutter app development tutorials


flutter – Text uppercase

main.dart


import 'package:flutter/material.dart';

void main(){
  runApp(
      MaterialApp(
        home: Scaffold(
          appBar: AppBar(
              title: const Text("Flutter - Text Uppercase")
          ),
          body: Container(
              alignment: Alignment.center,
              padding: const EdgeInsets.all(8),
              child: Text(
                  "i am a text.".toUpperCase(),
                  style: const TextStyle(fontSize: 50)
              )
          ),
        ),
      )
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started