Проблема в том, что после SearchScreen просит вставить скобку
int sectionIndex = 0;
body: sectionIndex == 0 ? HomeScreen() : SearchScreen() : LibraryPage() : ProfilePage(),
bottomNavigationBar: BottomNavigationBar(
items: const <BottomNavigationBarItem>[4 айтема, ничего интересного]
currentIndex: sectionIndex,
onTap: (int index) {
setState(() => sectionIndex = index);
},