View gradient_card_with_inkwell.dart
Card( | |
margin: EdgeInsets.all(8), | |
shape: _border, | |
clipBehavior: Clip.antiAliasWithSaveLayer, | |
child: Container( | |
decoration: BoxDecoration( | |
gradient: LinearGradient( | |
begin: Alignment.topCenter, | |
end: Alignment.bottomCenter, | |
colors: [color[100], color[300]]), |
View sifre.py
#KeroKOD Python Projeleri Part: 4 / www.kerokod.com | |
def kucukHarf(sifre): | |
kucukListe = ['a', 'b', 'c', 'ç', 'd', 'e', 'f', 'g', 'ğ', 'h', 'i', 'ı', 'j', | |
'k', 'l', 'm', 'n', 'o', 'ö', 'p', 'r', 's', 'ş', 't', 'u', 'ü', 'v', 'y', 'z'] | |
for harf in sifre: | |
for kontrolHarf in kucukListe: | |
if harf == kontrolHarf: | |
return True | |
return False |