You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
231 B

2 years ago
  1. import 'package:flutter/material.dart';
  2. class DetailsView extends StatelessWidget {
  3. const DetailsView({ Key? key }) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container(
  7. );
  8. }
  9. }