Skip to content

Instantly share code, notes, and snippets.

View kishorekumar080297's full-sized avatar
👨‍💻
😎

Kishore Kumar Govindaradjou kishorekumar080297

👨‍💻
😎
  • Sify Technologies Ltd.
  • Chennai, Tamil Nadu, India
View GitHub Profile
//Create by Kishore Kumar G on 22/09/2018 (https://github.com/kishorekumar080297)
void main() {
//superman is an object of class Hero
var superman = new Hero('Clark');
superman.flyPower();
//spiderman is an object of class Hero
var spiderman = new Hero('Peter');
spiderman.webPower();
}
//Create by Kishore Kumar G on 22/09/2018 (https://github.com/kishorekumar080297)
void main() {
print("Superheroes:");
var superheroes = ['hulk', 'superman', 'batman', 'flash', 'iron man'];
superheroes.forEach((hero) {
print('At position: ${superheroes.indexOf(hero)+1} Next hero is ${hero}');
});
print('\n');
print("Programming Languages:");
var languages = ['Python', 'C++', 'Java', 'C', 'Ruby'];
//Create by Kishore Kumar G on 11/09/2018 (https://github.com/kishorekumar080297)
void main() {
var score = highScore();
print('My High Score is $score');
var msg = helloWorld();
print('Greetings: $msg');
}
String highScore() {
return '300pts';
@kishorekumar080297
kishorekumar080297 / main.css
Created December 8, 2017 19:19
Ionic 3 -Using ios action sheet style in android platform
.action-sheet-md {
text-align: center;
}
.action-sheet-md .action-sheet-wrapper {
margin: constant(safe-area-inset-top) auto constant(safe-area-inset-bottom);
margin: env(safe-area-inset-top) auto env(safe-area-inset-bottom);
}
@kishorekumar080297
kishorekumar080297 / modal_issue.js
Created October 18, 2017 22:20
Materialize css modal scroll issuse
$(document).ready(function(){
$('.modal').modal({
dismissible: true,
opacity: .5,
inDuration: 300,
outDuration: 200,
startingTop: '4%',
endingTop: '10%',
);
});