track_widget_creation.dart 644 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:developer';
import 'package:flutter/widgets.dart';

void main() {
  final Set<Widget> widgets = <Widget>{};
  widgets.add(const Text('same'));
  widgets.add(const Text('same'));

  // If track-widget-creation is enabled, the set will have 2 members.
  // Otherwise is will only have one.
  registerExtension('ext.devicelab.test', (String method, Map<String, Object> params) async {
    return ServiceExtensionResponse.result('{"result":${widgets.length}}');
  });
}