blob: 1a15e01e0e74a2c0fc1fb8afad1da7c032558b0c [file] [log] [blame] [edit]
// Copyright 2013 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.
package dev.flutter.scenarios;
import android.content.Context;
import android.graphics.Color;
import android.view.View;
import android.widget.TextView;
import io.flutter.plugin.platform.PlatformView;
public class TextPlatformView implements PlatformView {
private final TextView textView;
@SuppressWarnings("unchecked")
TextPlatformView(final Context context, int id, String params) {
textView = new TextView(context);
textView.setTextSize(72);
textView.setBackgroundColor(Color.rgb(255, 255, 255));
textView.setText(params);
}
@Override
public View getView() {
return textView;
}
@Override
public void dispose() {}
}