-1

I need text area cursor starting point will be bottom right https://i.stack.imgur.com/wsS8O.jpg

Amila Senadheera
  • 12,229
  • 15
  • 27
  • 43

2 Answers2

0

You can set the TextField property textAlign at end,Hope this will work for you, Thanks

import 'package:flutter/material.dart';

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: Scaffold(
            body: SafeArea(
                child: Center(
                    child: Container(
                        width: 290,
                        padding: EdgeInsets.all(10.0),
                        child: TextField(
                            autocorrect: true,
                            textAlign: TextAlign.end,
                            decoration: InputDecoration(
                            )))))));
  }
}

enter image description here

Vishal_VE
  • 1,852
  • 1
  • 6
  • 9
-1
textarea {
    text-align: right;
}
Akshay I
  • 3,675
  • 1
  • 34
  • 57
doğan kısa
  • 43
  • 1
  • 7