Flutter 2024年最新

飞雪飘鸿發表於2024-06-05
import 'package:flutter/widgets.dart';

void main() => runApp(
      const Center(
        child: Text(
          'Hello, world!',
          key: Key('title'),
          textDirection: TextDirection.ltr,
        ),
      ),
    );

  

相關文章