coordinates_test.dart 1.42 KB
Newer Older
Hixie's avatar
Hixie committed
1 2 3 4
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

Adam Barth's avatar
Adam Barth committed
5
import 'package:flutter_test/flutter_test.dart';
6 7
import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart';
8 9

void main() {
10
  testWidgets('Comparing coordinates', (WidgetTester tester) async {
11 12
    final Key keyA = new GlobalKey();
    final Key keyB = new GlobalKey();
13

14
    await tester.pumpWidget(
15
      new Stack(
16
        textDirection: TextDirection.ltr,
17 18 19 20 21 22 23
        children: <Widget>[
          new Positioned(
            top: 100.0,
            left: 100.0,
            child: new SizedBox(
              key: keyA,
              width: 10.0,
24 25
              height: 10.0,
            ),
26 27 28 29 30 31 32
          ),
          new Positioned(
            left: 100.0,
            top: 200.0,
            child: new SizedBox(
              key: keyB,
              width: 20.0,
33 34
              height: 10.0,
            ),
35
          ),
36 37
        ],
      ),
38
    );
39

40
    final RenderBox boxA = tester.renderObject(find.byKey(keyA));
41
    expect(boxA.localToGlobal(const Offset(0.0, 0.0)), equals(const Offset(100.0, 100.0)));
42

43
    final RenderBox boxB = tester.renderObject(find.byKey(keyB));
44 45
    expect(boxB.localToGlobal(const Offset(0.0, 0.0)), equals(const Offset(100.0, 200.0)));
    expect(boxB.globalToLocal(const Offset(110.0, 205.0)), equals(const Offset(10.0, 5.0)));
46 47
  });
}