Skip to content

Instantly share code, notes, and snippets.

View DasJennir's full-sized avatar
👾
Studying

Istvan Feher DasJennir

👾
Studying
View GitHub Profile
@DasJennir
DasJennir / gist:a1ed93066f5e122bfa87131060232be1
Created December 27, 2020 16:54
Testimonials Row Flutter
SizedBox(
height: 200,
child: ListView(
// This next line does the trick.
scrollDirection: Axis.horizontal,
children: <Widget>[
GestureDetector(
onTap: () {
showDialog(
context: context,
@DasJennir
DasJennir / ServiceStatus
Created January 11, 2021 14:44
Get all runnign services PowerShell
get-service | Where-Object {$_.status -eq "running"}