main.dart 583 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
import 'dart:ui' as ui;
import 'package:flutter/material.dart';

// named_isolates_test depends on these values.
const String _kFirstIsolateName = 'first isolate name';
const String _kSecondIsolateName = 'second isolate name';

void first() {
  _run(_kFirstIsolateName);
}

void second() {
  _run(_kSecondIsolateName);
}

void _run(String name) {
  ui.window.setIsolateDebugName(name);
  runApp(Center(child: Text(name, textDirection: TextDirection.ltr)));
}

// `first` and `second` are the actual entrypoints to this app, but dart specs
// require a main function.
void main() { }