placing the components in flutter page screen with a custom layout
I am using visual studio code for Flutter development. The following code is the main structure of my test application. import 'package:flutter/material.dart'; void main() { runApp(const MyApp( )); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context)…