import 'package:flutter/material.dart'; class SearchScreen extends StatefulWidget { @override State createState() => _SearchScreenState(); } class _SearchScreenState extends State { @override Widget build(BuildContext context) { return Container( decoration: const BoxDecoration( gradient: LinearGradient( colors: [Colors.cyan, Colors.white60], begin: Alignment.centerLeft, end: Alignment.centerRight, stops: [0.2, 0.9])), child: Scaffold( backgroundColor: Colors.transparent, appBar: AppBar( title: const Text("Search Job Screen"), centerTitle: true, flexibleSpace: Container( decoration: const BoxDecoration( gradient: LinearGradient( colors: [Colors.cyan, Colors.black], begin: Alignment.centerLeft, end: Alignment.centerRight, stops: [0.2, 0.9])), ), ), ), ); } }