Tailwindcss plugin that adds a small box in the lower right corner of the screen showing the current breakpoint
Uses a position: fixed after css pseudo element on the body, so no extra markeup, and it get the breakpoint list by itself.
Tailwindcss plugin that adds a small box in the lower right corner of the screen showing the current breakpoint
Uses a position: fixed after css pseudo element on the body, so no extra markeup, and it get the breakpoint list by itself.
| #import <SystemConfiguration/CaptiveNetwork.h> | |
| NSString *currentSSID = @""; | |
| CFArrayRef myArray = CNCopySupportedInterfaces(); | |
| if (myArray != nil){ | |
| NSDictionary* myDict = (NSDictionary *) CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray, 0)); | |
| if (myDict!=nil){ | |
| currentSSID=[myDict valueForKey:@"SSID"]; | |
| } else { | |
| currentSSID=@"<<NONE>>"; |