mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
31 lines
876 B
Dart
31 lines
876 B
Dart
// 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 'dart:ui' as ui;
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter/painting.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
ui.Shader createShader(Rect bounds) {
|
|
return new LinearGradient(
|
|
begin: Point.origin,
|
|
end: new Point(0.0, bounds.height),
|
|
colors: <Color>[const Color(0x00FFFFFF), const Color(0xFFFFFFFF)],
|
|
stops: <double>[0.1, 0.35]
|
|
)
|
|
.createShader();
|
|
}
|
|
|
|
|
|
void main() {
|
|
test('Can be constructed', () {
|
|
testWidgets((WidgetTester tester) {
|
|
Widget child = new Container(width: 100.0, height: 100.0);
|
|
tester.pumpWidget(new ShaderMask(child: child, shaderCallback: createShader));
|
|
});
|
|
});
|
|
}
|