blob: 49903dbd90758494b0b027aa5a3e439fef7f8347 [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 'package:flutter/material.dart' hide Intent;
import 'package:fuchsia_inspect/inspect.dart' as inspect;
import 'package:fuchsia_modular/module.dart';
import '../inspect_example_app.dart';
class RootIntentHandler extends IntentHandler {
@override
void handleIntent(Intent intent) {
var inspectNode = inspect.Inspect().root;
runApp(InspectExampleApp(inspectNode));
}
}