blob: b08c947f770b3465860acba4619be41bb3af8e7a [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';
import 'package:fuchsia_inspect/inspect.dart';
import 'package:fuchsia_modular/module.dart';
import 'package:fuchsia_services/services.dart';
import '../inspect_example_app.dart';
class RootIntentHandler extends IntentHandler {
@override
void handleIntent(Intent intent) {
var context = StartupContext.fromStartupInfo();
runApp(InspectExampleApp(Inspect(context)));
}
}