# Screen Maker II — colourful wallpapers

> colourful wallpapers (iPhone/iPad app by rewcha.)

- Source: https://appshunter.io/ios/app/screen-maker-ii/id6761337518 (this page in markdown: same URL + `.md`)
- Developer: [rewcha](https://appshunter.io/developer/1246612370)
- Category: Graphics & Design, Utilities
- Price: Free (on sale, was $8.99)
- Age rating: 4+
- Requires: iOS 26.0 · 0 MB
- Languages: English
- Released: 2026-03-31
- Data updated: 2026-07-17
- User reviews in markdown: https://appshunter.io/ios/app/screen-maker-ii/id6761337518/reviews.md

## What is Screen Maker II?

30 Years Late.
Screen Maker II has Finally been Released.
Ported and Running on iPhone and iPad.
Tap to Make a New Screen.
Random Colourful Squares.
Long-press to Save to Photos.
Enjoy the Chaos and Screen Maker II - 30 Year Anniversary Edition.

--- Original Turbo Pascal 6.0 Version ---

program ScreenMakerII;

uses
  Crt, Graph;

var
  Gd, Gm: Integer;
  i, x, y, size: Integer;
  bgColor, color: Word;
  ch: Char;

begin
  Gd := Detect;
  InitGraph(Gd, Gm, '');
  
  if not (GraphResult = grOk) then
  begin
    Writeln('Graphics initialization failed!');
    Halt(1);
  end;

  Randomize;

  Writeln('ScreenMaker II');
  Writeln('Press any key to Make a New Screen');
  Writeln('Press ESC to Quit!');

  repeat
    ClearDevice;

    bgColor := Random(16);
    SetFillStyle(SolidFill, bgColor);
    Bar(0, 0, GetMaxX, GetMaxY);     
  
    for i := 1 to 160 do
    begin
      x := Random(GetMaxX);
      y := Random(GetMaxY);
      size := Random(90) + 25;      
      color := Random(16);

      SetFillStyle(SolidFill, color);
      SetColor(color);
      Bar(x, y, x + size, y + size);
    end;

    repeat
      ch := ReadKey;
    until not (ch = #0);

  until ch = #27;

  CloseGraph;
end.


## Version history (last 2 releases)

### 2.0261 — 2026-04-10

- small improvements.

### 1.0 — 2026-03-31

No release notes.

---

*Data collected daily from the US App Store and indexed by [AppsHunter](https://appshunter.io/). User reviews are verbatim App Store reviews. Ratings, prices and chart positions refresh continuously; this snapshot is from 2026-07-17.*
