1-) FLUTTER - klavyenin üstüne buttonu sabitleme How to make widget to top of keyboard
kaynak : https://stackoverflow.com/questions/49715760/how-to-make-widget-stick-to-top-of-keyboard
floatingActionButton: Theme( data: Theme.of(context).copyWith( highlightColor: ThemeProvider.themeOf(context) .data .bottomSheetTheme .backgroundColor), child: Tooltip( message: "İlan Oluştur", child: FloatingActionButton.extended( backgroundColor: ThemeProvider.themeOf(context).data.bottomAppBarColor, onPressed: () { // Add your onPressed code here! }, label: Text('Bitir ve Yayınla',style: TextStyle(color: StatikSinif.isDarkModeEnabled==true ? Colors.white:Colors.black),), icon: Icon(Icons.send, color: StatikSinif.isDarkModeEnabled==true ? Colors.white:Colors.black), ) ),),floatingActionButtonLocation: FloatingActionButtonLocation.endFloat,