Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created March 8, 2021 07:29
Show Gist options
  • Save MarcinusX/1e23cbb91c41d6e8f41df082295d3ccf to your computer and use it in GitHub Desktop.
Save MarcinusX/1e23cbb91c41d6e8f41df082295d3ccf to your computer and use it in GitHub Desktop.

Revisions

  1. MarcinusX created this gist Mar 8, 2021.
    19 changes: 19 additions & 0 deletions main.dart
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    import 'package:flutter/material.dart';

    void main() => runApp(RtlBrokenApp());

    class RtlBrokenApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
    return MaterialApp(
    home: Scaffold(
    body: Padding(
    padding: const EdgeInsets.all(64),
    child: TextField(
    textDirection: TextDirection.rtl,
    ),
    ),
    ),
    );
    }
    }