This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ITCS-4155/lib/placeholder_widget.dart
2020-02-05 21:50:33 -05:00

9 lines
224 B
Dart

import 'package:flutter/material.dart';
class PlaceholderWidget extends StatelessWidget{
final Color color;
PlaceholderWidget(this.color);
@override
Widget build(BuildContext context) => Container(color: color,);
}