// 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.import'package:flutter/widgets.dart';import'package:flutter/services.dart';voidmain(){runApp(newGestureDetector(onTap:(){Intentintent=newIntent()..action='android.intent.action.VIEW'..url='http://flutter.io/';activity.startActivity(intent);},child:newContainer(decoration:constBoxDecoration(backgroundColor:constColor(0xFF006600)),child:newCenter(child:newText('Tap to launch a URL!')))));}