💄 Optimized safe area
This commit is contained in:
parent
b520f27b90
commit
b6a11dc858
@ -31,8 +31,10 @@ class SolarAgent extends StatelessWidget {
|
||||
builder: (context, child) => Overlay(
|
||||
initialEntries: [
|
||||
OverlayEntry(
|
||||
builder: (context) => SafeArea(
|
||||
builder: (context) => Container(
|
||||
color: Colors.white,
|
||||
child: SafeArea(
|
||||
bottom: false,
|
||||
child: Scaffold(
|
||||
body: child,
|
||||
bottomNavigationBar: const AgentNavigation(),
|
||||
|
@ -1,7 +1,6 @@
|
||||
import 'dart:convert';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart';
|
||||
import 'package:solaragent/auth.dart';
|
||||
import 'package:solaragent/models/feed.dart';
|
||||
@ -9,7 +8,6 @@ import 'package:solaragent/models/pagination.dart';
|
||||
import 'package:http/http.dart' as http;
|
||||
import 'package:solaragent/router.dart';
|
||||
import 'package:solaragent/widgets/feed.dart';
|
||||
import 'package:solaragent/screens/publish/moment_editor.dart';
|
||||
|
||||
class ExploreScreen extends StatefulWidget {
|
||||
const ExploreScreen({super.key});
|
||||
|
Reference in New Issue
Block a user